/********** Template CSS **********/
:root {
    --primary: rgb(5, 5, 5);
    --light: #F5F5F5;
    --dark: #353535;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity:1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    border-radius: 0px; /* adjust the value to make the rounding more or less prominent */ 
    padding: 10px 20px; /* add some padding to the button content to make it look more spacious */
    border: none;
}
.btn-light {
    border-radius: 0px; /* adjust the value to make the rounding more or less prominent */ 
    padding: 10px 20px; /* add some padding to the button content to make it look more spacious */
    border: none;
}



.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
/* Bold font weight when clicked or focused */
    text-decoration: underline; /* Underline when clicked or focused */   
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 400px; /* Adjust this value as needed for mobile */
    }
    
    .header-carousel .owl-carousel-item img {
        height: 100%; /* Allow height to adjust automatically */
        width: 100%; /* Increase width to make it larger than the viewport */
        position: absolute; /* Position it absolutely for better control */
        left: 50%; /* Center from the left */
        transform: translateX(-50%); /* Shift left by half its width to center */
        object-fit: cover; /* Maintain aspect ratio and fill space */
        object-position: right center; 
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 0px solid #FFFFFF;
    font-size: 16px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: grey;
    border-color: var(--primary);
    opacity: 50%;
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
    border-radius: 50%;
    opacity: 85%;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: transparent;
    border: 0px solid #FFFFFF;
}

.header-carousel .owl-dot.active {
    background: #0e0e0e;
    border-color: var(--light);
}

.page-header {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .4)), url(../img/todas_header.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title h1 {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.section-title.text-start h1 {
    padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 0;
    background: var(--dark);
}

.section-title h1::before {
    left: 0;
}

.section-title h1::after {
    right: 0;
}

.section-title.text-start h1::before {
    display: none;
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item img {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.1);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    background: rgba(53, 53, 53, .7);
    transition: .5s;
}

.portfolio-item:hover .portfolio-overlay {
    width: 100%;
    height: 100%;
    left: 0;
}

.portfolio-item .portfolio-overlay .btn {
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .btn {
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item img {
    transition: .5s;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0 auto;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 38px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    border: 5px solid var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.logo-size {
    height: 65px;  /* Adjust the height as needed */
    width: auto;  /* Maintain the aspect ratio */
    }

.hidden {
    display: none;
}

#loader {
    font-family: Arial, Helvetica, sans-serif;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    overflow: visible;
    background:  url("../img/loader3.gif") no-repeat center;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Adjust the opacity here */
    z-index: 9997; /* Ensure the overlay is below the loader */
    display: none; /* Initially hide the overlay */
}

/* Media queries for mobile adjustments */
@media (max-width: 600px) {
    #loader-text {
        font-size: 15px !important; /* Smaller font size for mobile */
    }
}

#loader-text {
    
    color: white;
    font-size: 18px;
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 9999; /* Ensure the text is above the overlay */
  }


h1.bullet-point::before {
    content: "\2022"; /* Unicode for bullet point */
    font-size: 2rem; /* Size of the bullet point */
    color: white; /* Color of the bullet point */
    margin-right: 10px; /* Space between the bullet and the text */
    display: inline-block; /* Aligns bullet with the text */
    vertical-align: middle; /* Aligns bullet vertically with text */
}

.test1 {
    font-size: 32px !important;
    font-family: Arial, Helvetica, sans-serif;  /* or any color that matches your design */ /* Adjusts the space around the line */
}

.blue-text {
    color: #264d74; /* Darker blue color */
}

.orange-text {
    color: #a62d05; /* Darker orange color */
}

.img-icon {
    width: 60px !important; /* Set the desired width */
    height: auto; /* Maintain the aspect ratio */
    filter: brightness(0.1) invert(0.9); /* Change image color to white */
    margin-bottom: 10px; /* Space between the image and text */
}
.content-container {
    display: flex; /* Use flexbox layout for the container */
    flex-direction: column; /* Align items in a column */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text */
}

.size-p {
    font-size: 16px !important;
}

.team-item .overflow-hidden {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

#project-button {
  margin-top: 40px;
  position: relative; /* or relative */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px; 
  }

#pedirOrçamento {
  border-radius: 0%;
}

#questionInfo {
    padding: 45px 110px 45px 110px;
  }

section.map .info-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    margin-left: 15px;
    margin-right: 15px;
    position: relative;
    z-index: 2;
    transition: all 0.5s;
  }
  
  section.map .info-item:hover {
    margin-top: -70px;
  }
  
  section.map .info-item i {
    font-size: 36px;
    color: #16537e;
    margin-bottom: 25px;
  }
  
  section.map .info-item h4 {
    font-size: 18px;
    color: #212741;
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  section.map .info-item a {
    font-size: 15px;
    font-weight: 600;
    color: #16537e;
    transition: all 0.3s;
  }
  
  section.map .info-item a:hover {
    color: #353535;
  }
  @media (max-width: 992px) {
  section.map .info-item {
    margin-top: 30px;
  }
}

/*@import url(https://fonts.googleapis.com/css?family=Raleway);

body {
  color: #333;
  background: #fcfcfc;
  font-family: 'Raleway', sans-serif;
  overflow-x: hidden;
}

.faq-header{
  font-size: 42px;
  border-bottom: 1px dotted #ccc;
  padding: 24px;
}

.faq-content {
  margin: 0 auto;
}

.faq-question {
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
}

.panel-title {
  font-size: 24px;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 10px 10px 0 48px;
  display: block;
  cursor: pointer;
}

.panel-content {
  font-size: 20px;
  padding: 0px 14px;
  margin: 0 40px;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
}

.panel:checked ~ .panel-content{
  height: auto;
  opacity: 1;
  padding: 14px;
}

.plus {
  position: absolute;
  margin-left: 20px;
  margin-top: 4px;
  z-index: 5;
  font-size: 42px;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

.panel:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.panel {
  display: none;
}
######*/



details {
  width: 100%;
  min-height: 5px;
  max-width: 1000px;
  padding: 45px 70px 45px 45px;
  margin: 0 auto;
  position: relative;
  font-size: 20px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 15px;
  box-sizing: border-box;
  transition: all .3s;
}

details + details {
  margin-top: 20px;
}

details[open] {
  min-height: 50px;
  background-color: #f6f7f8;
  box-shadow: 2px 2px 20px rgba(0,0,0,.2);
}

details p {
  color: #96999d;
  font-weight: 300;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 50;
  cursor: pointer;
}

summary:focus {
  outline: none;
  
}

summary:focus::after {
  content: "";
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 0 0 5px rgb(26, 35, 134);
}

summary::-webkit-details-marker {
  display: none
}

.control-icon {
  fill: rgb(26, 35, 134);
  transition: .3s ease;
  pointer-events: none;
}

.control-icon-close {
  display: none;
}

details[open] .control-icon-close {
  display: initial;
  transition: .3s ease;
}

details[open] .control-icon-expand {
  display: none;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2147483645;
    box-sizing: border-box;
    width: 100%;
    transition: opacity 0.5s ease;
    background-color: #F1F6F4;
    display: none;
  }
  
  .cookie-consent-banner__inner {     
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 0;
  }
  
  .cookie-consent-banner__copy { 
    margin-bottom: 16px;
  }
  
  .cookie-consent-banner__actions {    
  }
  
  .cookie-consent-banner__header {
    margin-bottom: 8px;
    
    font-family: Arial, Helvetica, sans-serif; 
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
  }
  
  .cookie-consent-banner__description {
    font-family: Arial, Helvetica, sans-serif; 
    font-weight: normal;
    color: #838F93;
    font-size: 16px;
    line-height: 24px;
  }
  
  .cookie-consent-banner__cta {
    box-sizing: border-box;
    display: inline-block;
    min-width: 164px;
    padding: 11px 13px;
      
    border-radius: 2px;
    
    background-color: rgb(26, 35, 134);
     
    color: #FFF;
    text-decoration: none;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif; 
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
  }
  
  .cookie-consent-banner__cta--secondary { 
    padding: 9px 13px;
    
    border: 2px solid #3A4649;
    
    background-color: transparent;
    
    color: rgb(26, 35, 134);
  }
  
  .cookie-consent-banner__cta:hover {
    background-color: rgb(26, 35, 134);
  }
  
  .cookie-consent-banner__cta--secondary:hover {
    border-color: #838F93;
      
    background-color: transparent;
    
    color: rgb(26, 35, 134);
  }
  
  .cookie-consent-banner__cta:last-child {
    margin-left: 16px;
  }

  .rotateIcon {
    animation: rotateIcon 5s infinite;
}

/* Larger screens (laptop, tablet, etc.) */
@media (min-width: 601px) and (max-width: 1024px) {
    .cookie-consent-banner__inner {
        padding: 20px; /* Add extra padding for tablet size */
    }
}

/* Mobile styles only */
@media (max-width: 600px) {
    .cookie-consent-banner__inner {
        padding: 15px;
        width: 100%;
        text-align: center; /* Center all text */
    }

    .cookie-consent-banner__header {
        font-size: 1rem;
        text-align: center; /* Center the title on mobile */
    }

    .cookie-consent-banner__description {
        font-size: 0.9rem;
        text-align: center; /* Center the description on mobile */
    }

    .cookie-consent-banner__actions {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        align-items: center; /* Center buttons horizontally */
        width: 100%; /* Ensure container takes up full width */
        gap: 10px; /* Ensure consistent gap between buttons */
        margin: 0 auto; /* Center the button container */
    }

    .cookie-consent-banner__cta {
        font-size: 0.9rem;
        padding: 10px;
        width: 100%; /* Make buttons full width on mobile */
        margin: 0; /* Remove any unwanted margins */
        box-sizing: border-box; /* Ensure the padding is included in width */
    }

    .cookie-consent-banner__cta--secondary {
        width: 100%; /* Full width for "Rejeitar" */
        margin: 0; /* Remove any offsets or margin */
        box-sizing: border-box; /* Ensure padding fits inside width */
        margin-right: 17px;
    }
}

/* Updated HR with dark red to dark blue gradient */
hr {
    border: 0;
    height: 3px !important;
    background: linear-gradient(to right, #d90429, #023e8a); /* Dark red to dark blue */
    margin: 10px 0; /* Closer to title */
    width: 49%;
    max-width: 600px;
    align-self: flex-start;
}

/* Responsive adjustments */


@media (max-width: 600px) {
    hr {
        width: 230px !important; /* Increase the width for smaller screens */
    }
}




.hr-container {
    display: flex;
    justify-content: flex-start; /* Aligns children to the left */
}

/* Title styles with darker text shadow */
h2.text-white.mb-2.animated.fadeInDown {
    font-size: 3rem; /* Increase title size */
    margin-bottom: 0px !important; /* Adjust bottom margin */
    font-family: 'Raleway', sans-serif; /* Font family for title */
    font-weight: 700; /* Bold weight for title */
    color: #ffffff; /* White color for text */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Subtle dark shadow around text */
}

#header_text {
    font-size: 3rem; /* Increase title size */
    margin-bottom: 0.8rem; /* Adjust bottom margin */
    font-family: 'Raleway', sans-serif; /* Font family for title */
    font-weight: 700; /* Bold weight for title */
    color: #ffffff; /* White color for text */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Subtle dark shadow around text */
}

#ola123 {
    font-size: 1rem; /* Increase title size */
    font-family: 'Raleway', sans-serif; /* Font family for title */ /* Bold weight for title */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Subtle dark shadow around text */
}

/* Enhanced Button Styles */
#buttons-home {
    font-family: 'Open Sans', sans-serif; /* Apply Poppins font */
    font-weight: 600 !important; /* Font weight for buttons */
    font-size: 1rem; /* Adjust font size */
    border-radius: 10px; /* Rounded corners */
    padding: 0.8rem 2rem; /* Padding for better size */
    transition: all 0.4s ease; /* Smooth transition */
}

/* Adjust button layout on mobile devices */
@media (max-width: 767px) {
    #buttons-home {
        margin-left: 0px !important; /* Align to the left */
        margin-right: 20px !important; /* Align to the left */
        margin-bottom: 10px !important; /* Space between buttons */
        width: 58%;
    }
}

#buttons-extra {
    border-radius: 10px; /* Rounded corners */
}
/* Air conditioner icon adjustment - next to "Switch" */
.img-icon {
    height: 60px; /* Slightly larger icon */
    vertical-align: middle;
    margin-left: 10px; /* Spacing from the word */
}

/* Smoother entrance effects */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-timing-function: ease;
}

.fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */


@media (max-width: 600px) {
    h2.text-white.mb-2.animated.fadeInDown {
        font-size: 32px !important; /* Smaller for mobile */
    }
}



/* 
---------------------------------------------
testimonials
--------------------------------------------- 
*/

section.testimonials {
    margin-top: 90px;
    background-color: #ccc;
    margin-top: 10px;
  }
  
  section.testimonials .section-heading {
    padding-top: 30px;
  }
  
  .testimonials .item {
    border-radius: 15px;
    padding: 50px 50px 50px 50px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    margin: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    padding-top: 35px;
  }
  
  .testimonials .item i {
    width: 70px;
    height: 70px;
    /*background-color: #43ba7f;*/
    display: inline-block;
    text-align: center;
    line-height: 70px;
    color: #fff;
    font-size: 44px;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  
  .testimonials .item p {
    font-size: 16px;
    font-style: italic;
  }
  
  .testimonials .item h4 {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 600;
    position: relative;
  }
  
  .testimonials .item span {
    margin-top: 5px;
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #264d74;
  }
  
  .testimonials .item img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 300px;
    border-radius: 5px;
  }
  
  .testimonials .owl-dots {
    text-align: center;
    margin-top: 30px;
  }
  
  .testimonials .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: #ffa88c;
    border-radius: 50%;
    margin: 0px 4px;
  }
  
  .testimonials .owl-dots .active {
    background-color: #ff511a;
  }

  i.fas.fa-quote-left {
    color: black; /* Ensure icon has color */
    font-size: 50px; /* Increase size */
    position: relative; /* Ensure it's not being hidden by overflow or positioning */
    z-index: 999; /* Bring it to front */
}

@media (max-width: 992px) {
    .testimonials .item img {
      max-width: 200px;
      right: 50px;
    }
  }
  
  @media (max-width: 767px) {
    .testimonials .item i {
      margin-bottom: 60px;
    }
    .testimonials .item img {
      max-width: 100px;
      right: 50px;
      top: 35px;
      transform: translateY(0);
    }
    .testimonials .item {
      padding: 50px;
    }
  }

  #aboutUs {
    padding-right: 250px; /* Adjust the width as needed */
  }
  
  /* Responsive styling for smaller screens */
  @media (max-width: 768px) { /* Adjust the max-width value as needed */
    #aboutUs {
      padding-right: 20px; /* Adjust the padding for smaller screens */
    }
  }

#orçamentos {
    border-radius: 10px;
  }

  /* CSS class to block scrolling */
.no-scroll {
    overflow: hidden; /* Prevent scrolling */
    height: 100%; /* Ensure it takes full height */
}

.fancy-message {
    background: #f9f9f9; /* Light background */
    border-left: 4px solid #0056b3; /* Darker blue accent color */
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for elegance */
  }
  
  .fancy-message p {
    font-family: 'Arial', sans-serif;
    font-size: 1rem; /* Adjust font size for readability */
    color: #333;
    line-height: 1.6;
  }
  
  .fancy-message .icon {
    font-size: 1.5rem; /* Larger icon for visibility */
    color: #0056b3; /* Darker blue color for the icon */
    vertical-align: middle; /* Align icon with text */
  }
  
  .fancy-message .support-link {
    color: #0056b3; /* Darker blue for the link */
    text-decoration: none;
    font-weight: bold;
  }
  
  .fancy-message .support-link:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    /* Mobile adjustments */
    .fancy-message {
      padding: 10px;
    }
  
    .fancy-message p {
      font-size: 0.95rem;
    }
  
    .fancy-message .icon {
      font-size: 1.25rem;
    }
  }

  .phoneNumber, .phoneNumber * {
    color: white !important; /* Ensure white for both text and icons */
}
