@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

@font-face {
  font-family: 'Monument'; 
  src: url('../font/MonumentExtended-Regular.otf') format('truetype'); 
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;  
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #555555; 
    background-color: #FFFFFF; 
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4 {
    color: #6d6a3a; 
    font-weight: 600;
    
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    font-family: 'Monument', sans-serif;
    padding-top: 10px;
}

.navbar-about-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #000000; 
    box-shadow: none;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent; 
    box-shadow: none;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background-color: #000000; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.logo img {
    height: auto; 
    width: 250px;
    display: block;
    transition: width 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.9em;
    color: #fff; 
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFFFFF; 
    transition: width 0.3s ease, background-color 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: #c2c0a1; 
}

.navbar.scrolled .nav-link:hover {
    color: #c2c0a1; 
}

.navbar.scrolled .nav-link::after {
    background-color: #c2c0a1; 
}

.cta-button {
    background: linear-gradient(90deg, #636435, #c9cca5); 
    color: #FFFFFF;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.534);
}



.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
 
    margin: 4px 0;
    transition: 0.4s;
}

.hamburger-menu.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-menu.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #FFFFFF; 
}



.hero {
    position: relative;
    height: 100vh;
    color: #FFFFFF;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 1rem;
    animation: fadeInDown 1s ease-out 0.5s both;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-family: 'Monument', sans-serif;
    letter-spacing: 0.1em;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.products-section {
    background-image: url("../img/fundo.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 4rem 0;
    
}

.products-section .container-product {
    padding: 0 20px;
    max-width: 1900px; 
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: -2.5rem auto 3rem auto;
    font-size: 1.1rem;
    margin-top: 5px;
    
}

.btn-read2{
    display: flex;
    padding-top: 25px;
    
}

.btn-read{
    display: flex;
    padding-top: 50px;
    margin-top: auto;
}

.btn-read-more {
    text-decoration: none;
    color: #636435;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    color:#e5d887;
}



.products-grid {
    display: flex;
    background-color: transparent; 
    padding: 2rem; 
    align-items: center;
    justify-content: center;
   
}

.products-grid::-webkit-scrollbar {
    display: none;
}

.product-card {
    margin-right: 1rem;
    background-color: #f8f8f8;
    border: 1px solid #96937227;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 60px;          
    width: 100%;
    display: flex;         
    flex-direction: column; 
  

}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* .product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
} */

.product-content {
    flex: 1;                      
    display: flex;                 
    flex-direction: column;        
    justify-content: space-between;
    padding: 1.5rem;
}

.product-content p{
    font-size: 0.7em;
    text-align: justify;
    line-height: 1.6;
    flex-grow: 1; 
}
.product-title{
    display: flex;
    gap: 20px;
    padding-bottom: 10px;    
}

.product-title2{
    display: flex;
    gap: 20px;
    padding-bottom: 10px;    
}

.product-title img {
    height: 50px;
}

.product-title2 img{
    height: 50px;
    

}

.product-title h3,
.product-title2 h3 {
    font-size: 1rem;
    color: #969372; 
    margin: 0;
    align-items: center;
    display: flex;
}

.product-details {
    list-style: none;
    padding: 1rem 0 0 0;
    margin-bottom: 1rem;
    border-top: 1px solid #eeeeee;
}

/* .product-details li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #555555;
} */

.product-description {
    font-size: 0.9rem;
    color: #777777;
}


.steps-section {
    background-color: #ffffff; 
    padding: 5rem 0;
    overflow: hidden;
}

.timeline-container-horizontal {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    top: 25px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #e5d887; 
    z-index: 1;
    transition: width 1.2s ease-out;
}

.steps-section.in-view .timeline-line {
    width: 100%;
}

.steps-grid-horizontal {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step-card {
    text-align: center;
    padding-top: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.steps-section.in-view .step-card {
    opacity: 1;
    transform: translateY(0);
}

.steps-section.in-view .step-card:nth-child(1) { transition-delay: 0.4s; }
.steps-section.in-view .step-card:nth-child(2) { transition-delay: 0.6s; }
.steps-section.in-view .step-card:nth-child(3) { transition-delay: 0.8s; }
.steps-section.in-view .step-card:nth-child(4) { transition-delay: 1.0s; }

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #FFFFFF;
    border: 3px solid #e5d887;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    transition: background-color 0.5s, color 0.5s;
}

.steps-section.in-view .step-card .step-number {
    background-color: #e5d887; 
    color: #796e4a; 
}

.step-card p {
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.9em;
    padding-top: 5px;
}

.partners-section {
    padding: 20px 0;
    background-color: #000000;
}

.partners-section h2 {
    letter-spacing: 0.1em;
    font-size: 1.5rem;
    margin-bottom: 4rem;
    color: #e5d887;
}

.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}



.logo-track {
    display: flex;
    width: calc(250px * 12); 
    animation: scroll 40s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-track img {
    width: 250px;
    height: 80px;
    object-fit: contain;
    padding: 0 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-250px * 6)); } 
}

.contact-section {
    background-image: url("../img/familia.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    align-items: center;
    display: flex;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.container-contact {
    margin: 0 auto;
    text-align: center;
    
    
}

.contact-text{
    padding-bottom: 30px;
    color: #ffffff;
}

.contact-text h2{
    color: #e5d887;
}

.cta-button-contact {
    background: linear-gradient(90deg, #636435, #c9cca5); 
    color: #FFFFFF;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.cta-button-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.534);
}


.main-footer{
    background-color: #000000;
    color: #ffffff;
    padding-top: 60px;
    font-size: 0.9em;
   
}

.footer-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid 796e4a;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 90px;
    padding-right: 20px;
   
    
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1 1 300px; 
    padding: 0 10px; 
    display: flex;
    flex-direction: column;
    
    
}

.footer-left .footer-logo img {
    height: 100px; 
    width: auto;
    margin-bottom: 15px;
}

.footer-left p {
    line-height: 1.8em;
    font-size: 1em;
}

.footer-center h3,
.footer-right h3 {
    color:#e5d887; 
    font-size: 1em; 
    margin-bottom: 20px;
    font-weight: 600; 
}

.footer-center p,
.footer-right p {
    line-height: 1.8;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.footer-right p{ 
    color: #ffffff; 
}

.footer-right .icons{
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-right .icons img{
    width: 30px;
    height: 30px;
}

/* #icon-google{
    width: 25px;
    height: 25px;
} */


.footer-bottom { 
    background-color: #000000; 
    padding: 15px 0; 
    font-size: 0.85em;
    color: #796e4a; 
    text-align: center; 
    border-top: 1px solid #796e4a; 
}

.footer-bottom p {
    margin: 0;
}

#rpv{
    color: #796e4a;
    text-decoration: none;
}


.what-is-consorcio-section {
    padding-top: 80px;
    background-color: #ffffff;
}

.consorcio-content-wrapper {
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px; 
}

.consorcio-text {
    flex: 1;
    max-width: 50%;
    text-align: justify;
    font-size: 1rem;
}

.consorcio-text h2 {
    font-size: 2em;
    color: #796e4a;
    margin-bottom: 20px;
    text-align: left;
}

.mini-paragrafo2{
    text-align: center;
    font-size: 1em;
    color: #777;
}

.consorcio-text .mini-paragrafo{
    font-size: 1em;
    color: #777;
}

.consorcio-text p {
    line-height: 1.6;
    color: #777;
    margin-bottom: 15px;
}

.consorcio-text .cta-button {
    margin-top: 20px;
    display: inline-block; 
}

.consorcio-image-carousel {
    flex: 1;
    max-width: 50%;
    position: relative;
    height: 400px; 
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(104, 72, 30, 0.1);
}

.consorcio-image-carousel .carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out; 
}

.consorcio-image-carousel .carousel-image.active {
    opacity: 1;
}

.whatsapp-float {
    position: fixed; 
    width: 60px; 
    height: 60px; 
    bottom: 40px; 
    right: 40px; 
    border-radius: 50px; 
    text-align: center; 
    font-size: 30px; 
    z-index: 1000; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
}

.whatsapp-float img.whatsapp-icon {
    width: 100px; 
    height: 100px; 
    vertical-align: middle; 
    border: none; 
    margin-top: 2px; 
}

.whatsapp-float:hover {
    background-color: #075E54; 
    transform: scale(1.05); 
    transition: all 0.3s ease; 
}

.whatsapp-badge {
    position: absolute; 
    top: -10px; 
    right: 70px; 
    background-color: #075E54; 
    color: #FFF; 
    padding: 5px 10px; 
    border-radius: 5px; 
    font-size: 14px; 
    white-space: nowrap; 
    opacity: 0; 
    visibility: hidden; 
    transform: translateX(10px); 
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; 
}

.whatsapp-badge::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px; 
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #075E54; 
    transform: translateY(-50%);
}


.whatsapp-float:hover .whatsapp-badge {
    opacity: 1; 
    visibility: visible; 
    transform: translateX(0); 
}

.about-us-section-page {
    background-image: url("../img/fundo.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container-flex-about {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 80px 20px;
}

.about-us-text-col {
    text-align: justify;
    padding-left:400px;
    padding-right: 400px;
    padding-top: 80px;
    margin: 0 auto;
}

.about-us-text-col h2 {
    font-family: 'Monument', sans-serif;
    font-size: 2.2rem;
    color: #6d6a3a;
    text-align: left; 
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.about-us-text-col p {
    font-size: 1rem;
    line-height: 1.8;
    color: #777;
    text-align: justify;
}

.mvv-section {
    padding: 6rem 0;
    background-color: #f9f9f9; 
}



.mvv-title h2{
    text-align: center;
    font-family: 'Monument', sans-serif;
    font-size: 2em;
    color: #6d6a3a;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.mvv-title p{
    text-align: center;
    font-size: 1em;
    color: #777;

}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    

}

.mvv-card {
    background-color: transparent;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mvv-card:hover {
    transform: translateY(-8px);
    
}

.mvv-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem auto;
    background-color: #f0ebe0; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv-icon-wrapper img {
    width: 50px;
    height: auto;
}

.mvv-card h3 {
    font-size: 1rem;
    color: #6d6a3a;
    margin-bottom: 1rem;
}

.mvv-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
}


.mvv-grid > h3 {
    grid-column: 1 / -1; 
    text-align: center;
    margin-top: 3rem;
    font-size: 1.5rem;
    color: #796e4a;
    font-weight: 600;
}

.page-assesoria{
    padding-top: 80px;
}

.assesoria-title{
    text-align: center;
}

.assesoria-title .p1{
    padding-bottom: 10px;
    color:#796e4a;
    font-size: 1.1em;
}

.assesoria-title p{
    padding-bottom: 10px;
    font-size: 1em;
}

.vantagens-section {
    background-color: #f8f9fa;    
    padding: 80px 20px;
}


.section-main-title.dark-text {
    color:#796e4a; 
    margin-bottom: 5rem;
    margin-top: 2rem;
    font-size: 2em; 
}

.vantagens-grid {
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;  
}

.vantagens-grid2 {
    display: grid; 
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;  
}

.vantagem-card {
    background-color: #FFFFFF;
    border: 1px solid #e9ecef; 
    border-radius: 12px;
    padding: 2rem;
    text-align: left; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    width: 300px;
    
}

.container-vantagens{
    max-width: 1900px;
    padding: 0 20px;


}

.vantagem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.vantagem-icon {
    margin-bottom: 1.5rem;
}

.vantagem-icon img {
    width: 48px;  
    height: 48px;
}

.vantagem-card h3 {
    font-size: 1.2rem;
    color:#796e4a;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif; 
}

.vantagem-card p {
    font-size: 0.7rem;
    line-height: 1.6;
    color: #666666;
    text-align: justify;
    flex-grow: 1;
}


.contact-content {
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    display:flex;
}


.contact-inf{
    flex-basis: 55%;
    display: flex;
    gap: 20px;
    flex-direction: column;        
}

.contact-inf h2{
    font-size: 1.5em;
    color:#796e4a;
    text-align: left;
    padding-top: 30px;
}

.info-group{
    margin-bottom: 20px;
}

.info-label{
    font-weight: 600;
    color: 796e4a;
    margin-bottom: 5px;
    font-size: 0.9em;
    text-transform: uppercase;
}

.info-text{
    color: #666;
    line-height:1.6;
    font-size: 1em;
}

.submit-button ion-icon{
    font-size: 1em;

}

.contact-form {
    padding: 15px;
    border-radius: 8px;
    gap: 20px;
    flex-basis: 45%;
    
}
#contato{
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px;
    padding-top: 150px;
 
}

.contact-form h2 {
    font-size: 1.5em;
    color:#796e4a;
    /* margin-bottom: 30px; */
    text-align: left;
}

.contact-form p{
    font-size: 1em;
    color:#777;
}

.contact-page .form-group{
    margin-bottom: 20px;
}

.contact-page .form-group:last-of-type {
    margin-bottom: 0;
}

.form-page{
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #c9c4ae;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    color:#6d6a3a;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: #fffdfd;
    border-radius: 8px;
}

.form-page:focus {
    border-color: #796e4a; 
    box-shadow: none;
}

.form-page::placeholder {
    color:#6d6a3a;
}



textarea .form-page {
    resize: vertical; 
    background-color: #fff;
}

.container-trabalhe{
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.cta-button2 {
    background: linear-gradient(90deg, #636435, #c9cca5); 
    color: #FFFFFF;
    padding: 15px 270px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.cta-button2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.534);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease;
}

.modal-content {
    background-color: #FFFFFF;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.modal-overlay.active .modal-content {
    transform: translateX(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color:#6d6a3a;
    text-decoration: none;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: #333;
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.modal-header h2 {
    text-align: left;
    padding-bottom: 10px;
}


#modal-form {
    flex-grow: 1; 
}

.form-group {
    position: relative; 
    margin-bottom: 1.5rem;
}

#modal-form .cta-button {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    text-decoration: none;
    border: none;
    font-size: 1em;
}

.modal-footer {
    margin-top: auto; 
    padding-top: 2rem;
    border-top: 1px solid #c9c4ae;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;        
}

.footer-info {
    color: #555;
    margin-bottom: 1.5rem;
      
}

.footer-info p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.modal-socials {
    display: flex;
    gap: 1.5rem;
    width: 10px;
    justify-content: center;
    
}
.modal-socials img{
    width: 40px;
}

.modal-socials a {
    color: #796e4a;
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.modal-socials a:hover {
    transform: scale(1.1);
}

.custom-select { position: relative; width: 100%; }
.native-select{
  position:absolute; 
  inset:0;
  opacity:0; 
  pointer-events:none; 
  height:0;
}


.select-selected{
    width:100%;
    background:#fff;
    border: none;
    border-bottom:1px solid #c9c4ae;
    border-radius:8px;
    padding:12px 44px 12px 12px;
    color:#6d6a3a; 
    text-align:left;
    font-size:1rem; 
    cursor:pointer;
    transition: border-color 0.3s ease;
}

.select-selected:hover{
    border-bottom:1px solid #6d6a3a;
 
}

.select-selected::after{
  content:""; 
  position:absolute; 
  top:18px; 
  right:14px;
  border:6px solid transparent;
  border-top-color:#6d6a3a;
 
}

.select-items{
  position:absolute; 
  left:0; 
  right:0; 
  top:calc(100% + 6px);
  background:#fff; 
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  max-height:240px; 
  overflow:auto; 
  z-index:9999;
   border:1px solid #c9c4ae;
}
.select-items li{
    list-style:none; 
    padding:12px; 
    cursor:pointer; 
    color:#6d6a3a;
    border-bottom:1px solid #c9c4ae;
}

.select-items li:hover,
.select-items li[aria-selected="true"]{
  background:#9c9e3a7c; 
  color:#6d6a3a;
}
.select-hide{ 
    display:none; 
}

.funciona{
   background-image: url('../img/fundo.jpg');
   background-repeat: no-repeat;
   background-size: cover;
   background-attachment: fixed;
}

.topicos-funciona p{
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;    
}

.topicos-funciona li{
    color:#636435;
    font-weight: 600;
}

#contato2{
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px;
    padding-top: 150px;
}

.contact-text2{
    padding-bottom: 30px;
    color: #ffffff;
}

.contact-text2 h2{
    color: #e5d887;
    font-size: 1.5em;
}

.mini-paragrafo-vantagem{
    text-align: center;

}


/* RESPONSIVIDADE */


@media (min-width: 1024px) {
  .products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 1.5rem;
  }

  .product-card {
    height: 520px; 
  }

  .vantagens-grid {
    grid-template-columns: repeat(4, 1fr); 
  }

  .vantagens-grid2 {
    grid-template-columns: repeat(3, 1fr); 
  }

  .mvv-grid {
    grid-template-columns: repeat(4, 1fr); 
  }

  .consorcio-content-wrapper {
    flex-direction: row;
  }

  .about-us-text-col {
    padding-left: 250px;
    padding-right: 250px;
  }
}


@media (max-width: 1023px) {
  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 1rem;
  }

  .vantagens-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mvv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .consorcio-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .consorcio-text,
  .consorcio-image-carousel {
    max-width: 100%;
  }

  .about-us-text-col {
    padding-left: 60px;
    padding-right: 60px;
  }

  .footer-content {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }
}


@media (max-width: 767px) {

.navbar {
    display: flex;
    justify-content:space-between;
    flex-wrap:wrap;
    align-items: center;
    gap: 10px
  }

  .navbar .cta-button {
    margin-left: 70px;  
  }

  .navbar-about-us {
    display: flex;
    justify-content:space-between;
    flex-wrap:wrap;
    align-items: center;
    gap: 10px
  }

  .navbar-about-us .cta-button {
    margin-left: 70px;  
  }

  
  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #000000f3; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.4s ease;
    z-index: 1000;
  }

  .logo img{
    width: 180px;
    
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 20px 0;
  }

  .nav-link {
    color: #c2c0a1;
    font-size: 1rem;
    text-decoration: none;
    margin: 20px 0;
  }


  .nav-menu .header-cta {
    display: inline-block;
    font-size: 1.2rem;
    }

  
  .header-cta {
    align-items: center;
    display: flex;
  }


  .hamburger-menu {
    display: flex;
    cursor: pointer;
    z-index: 1100;

  }

   .hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #e5d887;
    margin: 4px 0;
    transition: 0.4s;
    
  }
  .hamburger-menu.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -9px);
  }

  .products-grid {
    grid-template-columns: 1fr; 
    padding: 1rem;
  }

  .product-card {
    height: auto; 
  }

  .consorcio-content-wrapper {
    flex-direction: column;
    gap: 30px;
    padding-top: 80px;
  }

  .about-us-text-col {
    padding: 20px;
  }

  .vantagens-grid {
    grid-template-columns: 1fr;
  }

  /* .vantagens-section{
    display: flex;
    align-items: center;
    justify-content: center;
  } */

  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-button,
  .cta-button-contact {
    padding: 0.5rem 1rem;
    font-size: 0.9rem; 
  }

  .main-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-content .icons{
    align-items: center;
    display: flex;
    justify-content: center;
    padding-top: 10px;

  }

  
.steps-section.in-view .timeline-line {
    width: 3px;
}

  .timeline-container-horizontal{
    padding: 0 1.5rem;
    margin: 3rem auto;
    max-width: 100%;
  }

  .timeline-line{
    height: 100%;
    left: 50px;
    top: 0;
    transition: width 1.2s ease-out ;
  }

  .steps-grid-horizontal {
    flex-direction: column;
    align-items: flex-start; 
    gap: 2.5rem; 
    }

.step-card {
    text-align: left; 
    width: 100%;
    padding-left: 65px; 
    padding-top: 0; 
}


.step-number {
    left: 0;
    top: 0;
    transform: none;
}

.step-card p {
    
    max-width: none;
}


.contact-content {
    flex-direction: column;
    padding-top: 10px;
    gap: 40px; 
}

.contact-inf, .contact-form {
    width: 100%; 
    min-width: 0; 
}

.contact-form {
    padding: 0; 
}

#formulario {
    width: 100%; 
}

.cta-button2 {
    padding: 15px 20px; 
}


}