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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2C3E50;
    line-height: 1.6;
    background-color: white;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    height: 67.2px;
    width: auto;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: #2C3E50;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #D4A574;
}

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

.btn-whatsapp {
    background-color: #D4A574;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-whatsapp:hover {
    background-color: #c49563;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.6) 100%), url('https://d2xsxph8kpxj0f.cloudfront.net/310419663029109210/j5VGUqD3adByTcWJ8p9FWc/hero-bg_581318ce.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    max-width: 600px;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(212, 165, 116, 0.15);
    border: 1px solid rgba(212, 165, 116, 0.4);
    color: #D4A574;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero > .hero-content > p:nth-of-type(1) {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hero > .hero-content > p:nth-of-type(2) {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.info-item {
    display: flex;
    flex-direction: column;
    background-color: rgba(212, 165, 116, 0.1);
    border-left: 4px solid #D4A574;
    padding: 1.5rem;
    border-radius: 0.25rem;
    flex: 1;
    min-width: 250px;
}

.info-item.featured {
    background-color: rgba(212, 165, 116, 0.1);
    border-left: 4px solid #D4A574;
    padding: 1.5rem;
    border-radius: 0.25rem;
    flex: 1;
    min-width: 250px;
}

.info-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #D4A574;
}

.info-label {
    font-size: 0.875rem;
    color: white !important;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background-color: #D4A574;
    color: white;
}

.btn-primary:hover {
    background-color: #c49563;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Diferenciais */
.diferenciais {
    background-color: #000000;
    color: white;
    padding: 4rem 2rem;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    font-size: 1rem;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.diferencial-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #333;
    transition: all 0.3s;
}

.diferencial-card:hover {
    border-color: #D4A574;
    transform: translateY(-5px);
}

.diferencial-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #D4A574;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diferencial-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.diferencial-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.diferencial-card::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #D4A574;
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    background-color: #000000;
    color: white;
    padding: 3rem 2rem;
    border-top: 1px solid #333;
}

.cta-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    background-color: #D4A574;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #c49563;
}

/* Formulário */
.formulario-section {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
}

.formulario-section .section-title {
    color: #2C3E50;
}

.formulario-section .section-subtitle {
    color: #2C3E50;
}

.formulario-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.formulario-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.formulario-left .section-subtitle {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.formulario-info {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.info-box {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #D4A574;
    font-family: 'Playfair Display', serif;
}

.info-label {
    font-size: 0.875rem;
    color: #666;
}

.form-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    color: #D4A574;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    color: #666;
    font-size: 0.95rem;
}

.form-container {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2C3E50;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #D4A574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-disclaimer {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #D4A574;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.btn-submit:hover {
    background-color: #c49563;
}

/* Galeria */
.galeria {
    background-color: white;
    padding: 4rem 2rem;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 1;
    background-color: #f0f0f0;
    cursor: pointer;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

.galeria-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1rem;
    font-weight: 600;
}

/* Plantas */
.plantas {
    background-color: white;
    padding: 4rem 2rem;
}

.plantas-wrapper {
    max-width: 1000px;
    margin: 2rem auto;
}

.plantas-carousel {
    position: relative;
    margin-bottom: 2rem;
}

.planta-image {
    width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    background-color: #f0f0f0;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.planta-info {
    text-align: center;
    margin-bottom: 2rem;
}

.planta-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2C3E50;
}

.planta-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.carousel-btn {
    background-color: #D4A574;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
}

.carousel-btn:hover {
    background-color: #c49563;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #D4A574;
}

.planta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.planta-btn {
    background-color: white;
    color: #2C3E50;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.planta-btn.active {
    background-color: #D4A574;
    color: white;
    border-color: #D4A574;
}

.planta-btn:hover {
    border-color: #D4A574;
}

.planta-cta {
    width: 100%;
    padding: 1rem;
    background-color: #D4A574;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.planta-cta:hover {
    background-color: #c49563;
}

/* Localização */
.localizacao {
    background-color: #000000;
    color: white;
    padding: 4rem 2rem;
}

.localizacao-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.localizacao-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.localizacao-left .section-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.localizacao-left .section-subtitle {
    margin-bottom: 1.5rem;
}

.localizacao-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.localizacao-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
    margin-top: 0;
}

.localizacao-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    line-height: 1.8;
    font-size: 0.95rem;
}

.endereco-card {
    background-color: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(100, 116, 139, 0.3);
}

.contato-card {
    background-color: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(100, 116, 139, 0.3);
}

.comercializacao-card {
    background-color: rgba(78, 65, 45, 0.6);
    border: 1px solid rgba(139, 117, 91, 0.3);
}

.whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-contact a {
    color: #D4A574;
    text-decoration: none;
    transition: color 0.3s;
}

.whatsapp-contact a:hover {
    color: #c49563;
}

.whatsapp-contact svg {
    color: #D4A574;
}

.localizacao-map {
    width: 100%;
    height: 500px;
    border-radius: 0.75rem;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.map-link {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: white;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 10;
    transition: all 0.3s;
}

.map-link:hover {
    background-color: #f0f0f0;
}


/* Footer */
footer {
    background-color: #000000;
    color: white;
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #D4A574;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #D4A574;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    margin: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-close:hover {
    color: #2C3E50;
}

/* Lightbox Gallery */
.lightbox {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 201;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #D4A574;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    z-index: 201;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(212, 165, 116, 0.8);
    color: white;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 201;
}

.modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #2C3E50;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #D4A574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 40;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
}

.floating-whatsapp:hover {
    background-color: #c49563;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    nav {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .formulario-wrapper {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .formulario-info {
        flex-direction: column;
        gap: 1rem;
    }

    .localizacao-wrapper {
        grid-template-columns: 1fr;
    }

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

    .hero-info {
        flex-direction: column;
        gap: 1rem;
    }

    .floating-whatsapp {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}
