  /* Reset e Estilos Gerais */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #222;
}



.logo-alt img {
    height: 45px;
    width: auto;
}

.logo-alt-right img {
    height: 35px;
    width: auto;
    padding-right: 85px;
}

/* Hero Section Alternativa */
.hero-alt {
    display: flex;
    min-height: 100vh;
    position: relative;
    flex-direction: column-reverse; /* Inverte a ordem para mobile */
}

.hero-image-alt {
    flex: 1;
    min-height: 50vh;
    background-image: url('./img/Homem.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-text-alt {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    max-width: 500px;
    line-height: 1.2;
}

.hero-form-alt {
    width: 100%;
    padding: 60px 40px;
    background-color: #f8f5f2;
}

.form-title-alt {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2a2a2a;
    position: relative;
    padding-bottom: 15px;
    padding-top: 40px;
}

.form-title-alt:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #b38e5d;
}/* HEADER (mantido igual) */

/* Textos do lado esquerdo (mantido) */
.hero-left-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-main-phrase {
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: 5px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Textos do lado direito (ajustados) */
.hero-right-text {
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
    text-align: right;
}

.soon-text {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.frame-logo img {
    height: 60px; /* Ajuste conforme necessário */
    width: auto;
    margin: 15px 0;
    filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.5));
}

.vanguard-text {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-main-phrase {
        font-size: 3rem;
    }
    .soon-text {
        font-size: 1.8rem;
    }
    .vanguard-text {
        font-size: 2.2rem;
    }
    .frame-logo img {
        height: 50px;
    }
}

@media (max-width: 992px) {
    .hero-left-text {
        left: 5%;
    }
    .hero-right-text {
        right: 5%;
    }
}

@media (max-width: 768px) {
    .hero-main-phrase {
        font-size: 2.5rem;
    }
    .soon-text {
        font-size: 1.5rem;
    }
    .vanguard-text {
        font-size: 2rem;
    }
    .frame-logo img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-left-text,
    .hero-right-text {
        text-align: center;
        width: 100%;
        left: 0;
        right: 0;
        padding: 0 20px;
    }
    .hero-right-text {
        top: 65%;
    }
    .hero-main-phrase {
        font-size: 2rem;
    }
    .soon-text {
        font-size: 1.3rem;
    }
    .vanguard-text {
        font-size: 1.8rem;
    }
    .frame-logo img {
        height: 35px;
    }
}   

.hero-image-side {
    flex: 1;
    position: relative;
    background-image: url('./img/Homem.webp');
    background-size: cover;
    background-position: 70% center; /* Alterado para mover a imagem para direita */
    overflow: hidden;
}

/* Ajuste adicional para telas grandes */
@media (min-width: 1600px) {
    .hero-image-side {
        background-position: 80% center;
    }
}

/* Mantenha o resto do CSS igual você tinha anteriormente */
.hero-left-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    z-index: 2; /* Garante que fique acima da imagem */
}

.hero-right-text {
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
    text-align: right;
    z-index: 2; /* Garante que fique acima da imagem */
}

/* Adicione um overlay escuro para melhor legibilidade do texto */
.hero-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
}
.logo-alt img {
    height: 45px;
    width: auto;
}

.logo-alt-right img {
    height: 35px;
    width: auto;
}

/* LAYOUT PRINCIPAL */
.hero-split {
    display: flex;
    min-height: 100vh;
}

.hero-image-side {
    flex: 1;
    position: relative;
    background-image: url('./img/Homem.webp');
    background-size: cover;
    background-position: center;
}

.hero-form-side {
    width: 450px;
    padding: 80px 40px;
    background-color: #f8f5f2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TEXTOS DA IMAGEM */
.hero-left-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-right-text {
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    text-align: right;
}

.hero-main-phrase {
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.hero-right-text div {
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 3px;
    font-weight: bold;
}

/* FORMULÁRIO */
.form-title-alt {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2a2a2a;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.form-title-alt:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #b38e5d;
}

.form-group-alt {
    margin-bottom: 20px;
}

.form-input-alt {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}

.form-button-alt {
    padding: 15px;
    background-color: #2a2a2a;
    color: white;
    border: none;
    border-radius: 3px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.form-button-alt:hover {
    background-color: #b38e5d;
}

.privacy-alt {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
    text-align: center;
}
.privacy-alt2 {
    margin-top: 15px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
}

.privacy-alt a {
    color: #2a2a2a;
    text-decoration: underline;
}
.privacy-alt2 a {
    color: #ffffff;
    text-decoration: underline;
}

/* RESPONSIVIDADE */
@media (max-width: 1200px) {
    .hero-main-phrase {
        font-size: 3rem;
    }
    
    .hero-right-text div {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
    }
    
    .hero-image-side {
        height: 60vh;
    }
    
    .hero-form-side {
        width: 100%;
        padding: 50px 20px;
    }
    
    .hero-left-text {
        left: 5%;
    }
    
    .hero-right-text {
        right: 5%;
    }
}

@media (max-width: 768px) {
    .hero-main-phrase {
        font-size: 2.5rem;
    }
    
    .hero-right-text div {
        font-size: 1.1rem;
    }
    
    .form-title-alt {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .header-alt {
        padding: 15px 20px;
    }
    
    .logo-alt img {
        height: 35px;
    }
    
    .logo-alt-right img {
        height: 25px;
    }
    
    .hero-main-phrase {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .hero-right-text div {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-left-text,
    .hero-right-text {
        text-align: center;
        width: 100%;
        left: 0;
        right: 0;
        padding: 0 20px;
    }
    
    .hero-right-text {
        top: 65%;
    }
}

/* Gallery Section Alternativa */
.gallery-alt {
    padding: 80px 20px;
    background-color: #fff;
}

.gallery-title-alt {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2a2a2a;
}

.gallery-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item-alt {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item-alt:hover {
    transform: translateY(-5px);
}

/* Contact Section Alternativa */
.contact-alt {
    display: flex;
    flex-direction: column;
    background-color: #2a2a2a;
    color: #fff;
}

.contact-image-alt {
    height: 400px;
    background-image: url('./img/localizacao1_jpg.webp ');
    background-size: cover;
    background-position: center;
}

.contact-form-alt {
    padding: 60px 40px;
    background-color: #2a2a2a;
}

.contact-title-alt {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.contact-title-alt:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #b38e5d;
}

/* Form Styles */
.form-group-alt {
    margin-bottom: 20px;
}

.form-input-alt {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.3s;
}

.form-input-alt:focus {
    border-color: #b38e5d;
    outline: none;
}

.form-button-alt {
    padding: 15px 30px;
    background-color: #b38e5d;
    color: white;
    border: none;
    border-radius: 3px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.form-button-alt:hover {
    background-color: #9a7a4d;
}

/* Footer Alternativo */
.footer-alt {
    background-color: #1a1a1a;
    color: #fff;
    padding: 30px;
    text-align: center;
    font-size: 14px;
}

/* WhatsApp Float */
.whatsapp-float-alt {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float-alt:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Responsividade */
@media (min-width: 768px) {
    .hero-alt {
        flex-direction: row;
    }

    .hero-form-alt {
        width: 400px;
    }

    .hero-text-alt {
        left: 80px;
        font-size: 3.5rem;
    }

    .contact-alt {
        flex-direction: row;
    }

    .contact-image-alt {
        width: 50%;
        height: auto;
    }

    .contact-form-alt {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .header-alt {
        padding: 15px 20px;
    }

    .logo-alt img {
        height: 35px;
    }

    .logo-alt-right img {
        height: 25px;
    }

    .hero-text-alt {
        font-size: 1.8rem;
        left: 20px;
        top: 40%;
    }

    .hero-form-alt, 
    .contact-form-alt {
        padding: 40px 20px;
    }

    .whatsapp-float-alt {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* Estilos para a nova seção */
.eternize-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.eternize-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.eternize-image {
    flex: 1;
    height: 600px;
    background-image: url('img/menu.webp');
    background-size: cover;
    background-position: center;
    margin-right: 50px;
}

.eternize-content {
    flex: 1;
    padding: 0 40px;
}

.eternize-title {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.eternize-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
    max-width: 500px;
}

.apartments-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
}

.card {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #777;
    margin-bottom: 10px;
}

.card-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #b38e5d;
}

/* Responsividade */
@media (max-width: 1024px) {
    .eternize-container {
        flex-direction: column;
    }
    
    .eternize-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 50px;
        height: 400px;
    }
    
    .eternize-content {
        padding: 0 20px;
    }
    
    .eternize-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .eternize-section {
        padding: 60px 0;
    }
    
    .eternize-title {
        font-size: 1.8rem;
    }
    
    .apartments-cards {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 20px;
    }
    
    .card-value {
        font-size: 1.8rem;
    }
}

 /* Estilos para a seção de experiência */
 .experience-section {
    padding: 80px 20px;
    background-color: #fff;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.experience-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.experience-content {
    max-width: 800px;
    margin: 0 auto 50px;
}

.experience-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.experience-item:hover {
    transform: scale(1.03);
}

/* Responsividade */
@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-item {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .experience-title {
        font-size: 2rem;
    }
    
    .experience-text {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .experience-section {
        padding: 60px 15px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-item {
        height: 200px;
    }
}
 /* Estilos do carrossel */
 .experience-carousel {
    padding: 80px 20px;
    background-color: #fff;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.carousel-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.carousel-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.carousel-slide {
    display: none;
    width: 100%;
    transition: transform 0.6s ease;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.7);
    color: #333;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-prev:hover, .carousel-next:hover {
    background-color: rgba(255,255,255,0.9);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #fff;
}

/* Responsividade */
@media (max-width: 1024px) {
    .carousel-slide img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-description {
        font-size: 1rem;
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .carousel-slide img {
        height: 350px;
    }
    
    .carousel-prev, .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .experience-carousel {
        padding: 60px 15px;
    }
    
    .carousel-slide img {
        height: 250px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

.carousel-description .short-text {
    display: none;
}

@media (max-width: 768px) {
    .carousel-description .full-text {
        display: none;
    }
    .carousel-description .short-text {
        display: inline;
    }
}
/* HEADER - RESPONSIVO */
.header-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo-alt img {
    height: 35px; /* Reduzido para mobile */
    width: auto;
    max-width: 150px;
}

.logo-alt-right img {
    height: 25px; /* Reduzido para mobile */
    width: auto;
    max-width: 300px;
}

/* HERO SECTION - RESPONSIVO */
.hero-split {
    display: flex;
    flex-direction: column; /* Coluna em mobile */
    min-height: 100vh;
}

.hero-image-side {
    flex: 1;
    min-height: 50vh;
    background-image: url('./img/Homem.webp');
    background-size: cover;
    background-position: 70% center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

/* TEXTO DO LADO ESQUERDO - MOBILE */
.hero-left-text {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-main-phrase {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* TEXTO DO LADO DIREITO - MOBILE */
.hero-right-text {
    text-align: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.soon-text {
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.frame-logo img {
    height: 40px;
    width: auto;
    margin: 10px 0;
    filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.5));
}

.vanguard-text {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* OVERLAY PARA MELHOR LEGIBILIDADE */
.hero-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 0;
}

/* POSICIONAMENTO DOS TEXTOS ACIMA DO OVERLAY */
.hero-left-text,
.hero-right-text {
    position: relative;
    z-index: 1;
}

/* VERSÃO DESKTOP */
@media (min-width: 768px) {
    .header-alt {
        padding: 25px 40px;
    }
    
    .logo-alt img {
        height: 45px;
        max-width: none;
    }
    
    .logo-alt-right img {
        height: 35px;
        max-width: none;
    }
    
    .hero-split {
        flex-direction: row;
    }
    
    .hero-image-side {
        padding: 0;
        justify-content: flex-start;
    }
    
    .hero-left-text {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        text-align: left;
        margin-bottom: 0;
        width: auto;
    }
    
    .hero-right-text {
        position: absolute;
        top: 50%;
        right: 4%;
        transform: translateY(-50%);
        text-align: right;
        width: auto;
    }
    
    .hero-main-phrase {
        font-size: 3.5rem;
        letter-spacing: 5px;
    }
    
    .soon-text {
        font-size: 1.8rem;
    }
    
    .frame-logo img {
        height: 60px;
    }
    
    .vanguard-text {
        font-size: 2.2rem;
    }
    
    .hero-image-side::before {
        background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
    }
}

@media (max-width: 768px) {
    .hero-left-text {
      display: none;
    }
  }
  
  .card-value {
    font-size: 1.17em; /* tamanho padrão de <h3> */
    font-weight: bold; /* ou igual ao <h3> */
    margin: 0;          /* para alinhar bem com o h3 */
  }
/* Por padrão, esconde a versão mobile */
.mobile-only {
    display: none;
  }
  
  /* Esconde a versão desktop no mobile e mostra a resumida */
  @media (max-width: 768px) {
    .desktop-only {
      display: none;
    }
    .mobile-only {
      display: block;
    }
  }
  /* Estilos da Seção */
  .plantas-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2a2a2a;
    margin-bottom: 40px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #b38e5d;
}

/* Navegação */
.plantas-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.planta-btn {
    padding: 12px 25px;
    background-color: transparent;
    border: 1px solid #b38e5d;
    color: #2a2a2a;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 3px;
}

.planta-btn.active {
    background-color: #b38e5d;
    color: white;
}

.planta-btn:hover:not(.active) {
    background-color: rgba(179, 142, 93, 0.1);
}

/* Conteúdo Principal */
.plantas-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    align-items: flex-start;
}

/* Visualizador de Plantas */
.plantas-viewer {
    width: 55%;
    position: relative;
}

.planta-imagem {
    display: none;
    position: relative;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.planta-imagem.active {
    display: block;
}

.planta-imagem img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.zoom-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255,255,255,0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-btn:hover {
    background-color: #b38e5d;
    color: white;
}

/* Card de Informações */
.planta-info-card {
    width: 45%;
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-content {
    display: none;
}

.info-content.active {
    display: block;
}

.info-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.info-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #b38e5d;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.info-content li {
    padding: 8px 0;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-left: 25px;
}

.info-content li:before {
    content: '•';
    color: #b38e5d;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Modal de Zoom */
.planta-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
}

.modal-content {
    display: block;
    margin: 50px auto;
    max-width: 90%;
    max-height: 80vh;
}

.modal-caption {
    color: #fff;
    text-align: center;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

/* Responsivo */
@media (max-width: 992px) {
    .plantas-content {
        flex-direction: column;
    }
    
    .plantas-viewer,
    .planta-info-card {
        width: 100%;
    }
    
    .planta-info-card {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .planta-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .info-content h3 {
        font-size: 1.5rem;
    }
}    