/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* VERDES PRINCIPAIS */
    --color-primary: #1E3320;       /* Verde escuro - botões e destaques */
    --color-primary-dark: #0F1A0F;  /* Fundo escuro forte */

    /* BRANCOS */
    --color-white: #ffffff;
    --color-black: #000000;

    /* FUNDOS CLAROS */
    --color-neutral-50: #F4F8F0;
    --color-neutral-100: #EEF4E8;
    --color-neutral-200: #dfe8d7;

    /* TEXTOS */
    --color-neutral-400: #96B870;
    --color-neutral-600: #5A7A40;
    --color-neutral-700: #3f5530;
    --color-neutral-800: #1E3320;
    --color-neutral-900: #111A11;

    /* DETALHES */
    --color-yellow: #96B870;

    /* VERDES SECUNDÁRIOS */
    --color-green-50: #EEF4E8;
    --color-green-100: #96B870;

    /* FONT */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;

    /* SOMBRAS */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-neutral-800);
    background-color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    flex-shrink: 0;
}

/* Header */
#header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-neutral-200);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-neutral-800);
}

.logo-accent {
    color: var(--color-primary);
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--color-neutral-700);
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--color-neutral-900);
}

.desktop-cta {
    display: flex;
}

@media (max-width: 768px) {
    .desktop-cta {
        display: none !important;
    }
}
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--color-neutral-700);
    cursor: pointer;
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--color-neutral-200);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu nav a {
    color: var(--color-neutral-700);
}

.mobile-menu nav a:hover {
    color: var(--color-neutral-900);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), transparent);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 42rem;
}

.hero-text h1 {
    font-size: 1.875rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--color-green-50);
    color: var(--color-primary-dark);
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.about-content h2 {
    font-size: 1.875rem;
    color: var(--color-neutral-800);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--color-neutral-600);
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.icon-check {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-neutral-200);
}

.stat-number {
    font-size: 1.875rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-neutral-600);
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.images-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.images-column-offset {
    padding-top: 2rem;
}

.image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ratio-4-5 {
    aspect-ratio: 4 / 5;
}

.ratio-square {
    aspect-ratio: 1 / 1;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trust Section */
.trust-section {
    background-color: var(--color-neutral-50);
    padding: 3rem 0;
}

.rating-display {
    text-align: center;
    margin-bottom: 2rem;
}

.stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star {
    width: 24px;
    height: 24px;
    color: var(--color-yellow);
}

.rating-display p {
    color: var(--color-neutral-600);
}

.rating-display strong {
    color: var(--color-neutral-800);
}

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

.testimonial-card {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars .star {
    width: 16px;
    height: 16px;
}

.testimonial-text {
    color: var(--color-neutral-700);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--color-neutral-800);
    font-weight: 600;
}

/* Environments Section */
.environments-section {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.875rem;
    color: var(--color-neutral-800);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-neutral-600);
    max-width: 42rem;
    margin: 0 auto;
}

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

.environment-card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.environment-card:hover {
    box-shadow: var(--shadow-xl);
}

.environment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.environment-card:hover img {
    transform: scale(1.05);
}

.environment-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
}

.environment-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.environment-content h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.environment-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: gap 0.3s ease;
}

.environment-card:hover .environment-link {
    gap: 0.75rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background-color: var(--color-neutral-50);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-card {
    text-align: center;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--color-green-100);
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.benefit-card h3 {
    font-size: 1.125rem;
    color: var(--color-neutral-800);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--color-neutral-600);
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.process-timeline {
    display: none;
}

.process-mobile {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.process-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.process-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.process-info {
    flex: 1;
    padding-top: 0.25rem;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--color-green-100);
    color: var(--color-primary);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-info h3 {
    font-size: 1.125rem;
    color: var(--color-neutral-800);
    margin-bottom: 0.25rem;
}

.process-info p {
    color: var(--color-neutral-600);
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background-color: var(--color-neutral-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-xl);
}

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

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

/* Final CTA Section */
.final-cta {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.final-cta-background {
    position: absolute;
    inset: 0;
}

.final-cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(23, 23, 23, 0.7);
}

.final-cta-content {
    position: relative;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 1.875rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: var(--color-neutral-900);
    color: var(--color-white);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-neutral-400);
}

.footer-contact h3,
.footer-social h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-neutral-400);
    margin-bottom: 0.75rem;
}

.contact-item .icon {
    width: 20px;
    height: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-neutral-800);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--color-primary);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--color-neutral-800);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--color-neutral-400);
    font-size: 0.875rem;
}

/* Media Queries - Tablet */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        height: 600px;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-text p {
        font-size: 1.25rem;
    }

    .about-section {
        padding: 6rem 0;
    }

    .trust-section {
        padding: 4rem 0;
    }

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

    .testimonial-card {
        padding: 2rem;
    }

    .environments-section {
        padding: 6rem 0;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

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

    .benefits-section {
        padding: 6rem 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .process-section {
        padding: 6rem 0;
    }

    .gallery-section {
        padding: 6rem 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .final-cta {
        padding: 7rem 0;
    }

    .final-cta-content h2 {
        font-size: 3rem;
    }

    .final-cta-content p {
        font-size: 1.25rem;
    }
}

/* Media Queries - Desktop */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .header-content {
        height: 80px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .desktop-nav {
        display: flex;
    }

    .desktop-cta {
        display: inline-flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

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

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        align-items: center;
    }

    .about-content h2 {
        font-size: 2.25rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

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

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

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

    .process-mobile {
        display: none;
    }

    .process-timeline {
        display: block;
        position: relative;
    }

    .timeline-line {
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        height: 2px;
        background-color: var(--color-green-100);
    }

    .process-timeline > div:not(.timeline-line) {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }

    .process-step {
        position: relative;
    }

    .step-icon {
        position: relative;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80px;
        height: 80px;
        background-color: var(--color-primary);
        border-radius: 50%;
        margin: 0 auto 2rem;
        box-shadow: var(--shadow-lg);
    }

    .step-icon svg {
        width: 32px;
        height: 32px;
        color: var(--color-white);
    }

    .step-content {
        text-align: center;
    }

    .step-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: var(--color-green-100);
        color: var(--color-primary);
        border-radius: 50%;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }

    .step-content h3 {
        font-size: 1.125rem;
        color: var(--color-neutral-800);
        margin-bottom: 0.5rem;
    }

    .step-content p {
        font-size: 0.875rem;
        color: var(--color-neutral-600);
    }

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

    .final-cta-content h2 {
        font-size: 3.75rem;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .hero-text h1 {
        font-size: 3.75rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .about-content h2 {
        font-size: 2.25rem;
    }
}

/* popup */
.popup-overlay{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999;
}

.popup-form{
    background:#fff;
    padding:40px;
    border-radius:10px;
    width:100%;
    max-width:420px;
    position:relative;
}

.popup-form form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.popup-form input,
.popup-form textarea,
.popup-form select{
    padding:12px;
    border:1px solid #ddd;
    border-radius:6px;
}

.close-popup{
    position:absolute;
    top:10px;
    right:15px;
    border:none;
    background:none;
    font-size:24px;
    cursor:pointer;
}
