.fundo img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
}

@media (max-width: 600px) {
    .fundo img {
        max-width: 90vw;
        height: auto;
    }
}
* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
 
 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
     line-height: 1.6;
     color: #333;
     background-color: #f9fafb;
 }
 
 /* Header Styles */
 header {
     background-color: #0b4e23;
     color: rgb(0, 0, 0);
     box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
 }
 
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1rem;
 }
 
 .header-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 70px;
 }
 
 .logo {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     text-decoration: none;
     color: rgb(0, 0, 0);
     font-size: 1.5rem;
     font-weight: bold;
 }
 
 nav {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 1.5rem;
 }
 
 nav a {
     color: white;
     text-decoration: none;
     padding: 0.5rem 0.75rem;
     border-radius: 0.375rem;
     transition: background-color 0.3s;
 }
 
 nav a:hover,
 nav a.active {
     background-color: #15803d;
 }
 
 .btn-login {
     background-color: white;
     color: #16a34a;
     padding: 0.5rem 1rem;
     border-radius: 0.5rem;
     text-decoration: none;
     transition: background-color 0.3s;
 }
 
 .btn-login:hover {
     background-color: #ffffff;
 }

 .btn-signup {
     background-color: #16a34a;
     color: white;
     padding: 0.5rem 1rem;
     border-radius: 0.5rem;
     text-decoration: none;
     transition: background-color 0.3s;
     margin-right: 0.5rem;
 }

 .btn-signup:hover {
     background-color: #15803d;
 }

 .user-info {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-left: 1rem;
 }

 .user-name {
     color: rgb(255, 255, 255);
     font-weight: 500;
     font-size: 0.9rem;

 }

 .btn-logout {
     background-color: rgba(255, 255, 255, 0.2);
     color: white;
     border: 1px solid rgba(255, 255, 255, 0.3);
     padding: 0.4rem 0.8rem;
     border-radius: 0.375rem;
     text-decoration: none;
     font-size: 0.85rem;
     cursor: pointer;
     transition: all 0.3s;
 }

 .btn-logout:hover {
     background-color: rgba(255, 255, 255, 0.3);
     border-color: rgba(255, 255, 255, 0.5);
 }

 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     color: rgb(255, 255, 255);
     cursor: pointer;
     padding: 0.5rem;
 }
 
 /* Hero Section */
 .hero {
     position: relative;
     height: 600px;
     overflow: hidden;
 }
 
 .hero-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }
 
 .hero-overlay {
     position: absolute;
     inset: 0;
     display: flex;
     align-items: center;
 }
 
 .hero-content {
     color: rgb(104, 98, 98);
        max-width: 700px;
 }
 
 .hero-badge {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     font-size: 1.25rem;
     margin-bottom: 1rem;
 }
 
 .hero h1 {
     font-size: 3.75rem;
     margin-bottom: 1.5rem;
     line-height: 1.1;
 }
 
 .hero p {
     font-size: 1.5rem;
     margin-bottom: 2rem;
 }
 
 .hero-buttons {
     display: flex;
     flex-wrap: wrap;
     gap: 1rem;
 }
 
 .btn {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 1rem 2rem;
     border-radius: 0.5rem;
     text-decoration: none;
     font-size: 1rem;
     transition: all 0.3s;
     cursor: pointer;
     border: none;
 }
 
 .btn-primary {
     background-color: white;
     color: #16a34a;
 }
 
 .btn-primary:hover {
     background-color: #f0fdf4;
     transform: scale(1.05);
 }
 
 .btn-secondary {
     background-color: #16a34a;
     color: white;
     border: 2px solid white;
 }
 
 .btn-secondary:hover {
     background-color: #15803d;
 }
 
 /* Interactive Map Areas */
 .map-area {
     position: absolute;
     width: 128px;
     height: 128px;
     opacity: 0;
     transition: opacity 0.3s;
     pointer-events: auto;
 }
 
 /* Features Section */
 .features {
     padding: 4rem 0;
    background: linear-gradient(135deg, #0b4e23 0%, #1a7a3e 100%);
 }
 
 .section-header {
     text-align: center;
     margin-bottom: 3rem;
 }
 
 .section-header h2 {
     font-size: 2.5rem;
     color: #ffffff;
     margin-bottom: 1rem;
 }
 
 .section-header p {
     font-size: 1.25rem;
     color: #ffffff;
     max-width: 800px;
     margin: 0 auto;
 }
 
 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 1.5rem;
 }
 
 .feature-card {
     background-color: #f9fafb;
     padding: 1.5rem;
     border-radius: 0.75rem;
     text-decoration: none;
     color: inherit;
     border: 2px solid transparent;
     transition: all 0.3s;
     overflow: hidden;
 }

 .feature-card:hover {
     box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
     transform: translateY(-0.5rem);
     border-color: #16a34a;
 }

 .product-image {
     width: 100%;
     height: 200px;
     object-fit: cover;
     border-radius: 0.5rem;
     margin-bottom: 1rem;
     align-items: center;
     justify-content: center;
     margin-bottom: 1rem;
 }
 
 .feature-icon svg {
     width: 32px;
     height: 32px;
     stroke: #16a34a;
 }
 
 
 
 .feature-card p {
     color: #6b7280;
 }
 
 /* CTA Section */
 .cta {
     padding: 4rem 0;
     background-color: #16a34a;
     color: white;
     text-align: center;
 }
 
 .cta h2 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }
 
 .cta p {
     font-size: 1.25rem;
     margin-bottom: 2rem;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
 }
 
 .cta .btn {
     background-color: white;
     color: #16a34a;
 }
 
 .cta .btn:hover {
     background-color: #f0fdf4;
     transform: scale(1.05);
 }
 
 /* Footer */
 .footer {
     background-color: #0c5e29;
     color: white;
     padding: 2rem 0;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 2rem 1rem;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
     margin-bottom: 2rem;
 }

 @media (min-width: 768px) {
     .footer-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 .footer-logo {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     margin-bottom: 1rem;
     font-size: 1.25rem;
     font-weight: 700;
 }

 .footer-logo-icon {
     width: 24px;
     height: 24px;
     fill: white;
 }

 .footer-section h3 {
     margin-bottom: 1rem;
     font-size: 1.25rem;
 }

 .footer-heading {
     font-size: 1.25rem;
     margin-bottom: 1rem;
 }

 .footer-text {
     color: #d1fae5;
     line-height: 1.8;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 0.5rem;
 }

 .footer-links a {
     color: #d1fae5;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: white;
 }

 .footer-contact {
     list-style: none;
 }

 .footer-contact li {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     color: #d1fae5;
     margin-bottom: 0.75rem;
 }

 .footer-icon {
     width: 16px;
     height: 16px;
     stroke: currentColor;
     fill: none;
     stroke-width: 2;
 }

 .footer-section p,
 .footer-section a {
     color: #bbf7d0;
     text-decoration: none;
     display: block;
     margin-bottom: 0.5rem;
 }

 .footer-section a:hover {
     color: white;
 }

 .social-links {
     display: flex;
     gap: 1rem;
     margin-top: 1rem;
 }

 .social-link {
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: white;
     text-decoration: none;
     transition: background-color 0.3s ease;
     text-align: center;
 }

 .social-link:hover {
     background-color: rgba(255, 255, 255, 0.2);
 }

 .social-icon {
     width: 18px;
     height: 18px;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.2);
     padding-top: 1.5rem;
     text-align: center;
     color: #d1fae5;
 }
 
 /* Responsive */
 @media (max-width: 768px) {
     nav {
         display: none;
     }
 
     nav.active {
         display: flex;
         flex-direction: column;
         position: absolute;
         top: 64px;
         left: 0;
         right: 0;
         background-color: #16a34a;
         padding: 1rem;
         border-top: 1px solid #15803d;
     }
 
     .mobile-menu-btn {
         display: block;
     }
 
     .hero h1 {
         font-size: 2.5rem;
     }
 
     .hero p {
         font-size: 1.25rem;
     }

     .hero {
         height: 400px;
     }
 
     .features-grid {
         grid-template-columns: 1fr;
     }
 
     .map-area {
         display: none;
     }
 }
 
 /* Icons */
 .icon {
     width: 24px;
     height: 24px;
 }


.insta{
    width: 30px;
    height: 25px;
}


.image-slider {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.slider {
    position: relative;
    width: 90%;
    max-width: 1100px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Slides */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Setas */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    transition: background 0.3s;
}

.arrow:hover {
    background: rgba(0,0,0,0.8);
}

.arrow.left {
    left: 15px;
}

.arrow.right {
    right: 15px;
}

/* Mobile */
@media (max-width: 768px) {
    .slider {
        height: 230px;
    }

    .arrow {
        font-size: 1.5rem;
    }
}

/* Depoimentos */
.testimonials {
    padding: 4rem 0;
    background-color: #f0fdf4;
}

.testimonials .section-header h2 {
    color: #15803d;
}

.testimonials .section-header p {
    color: #166534;
}

.testimonials-tabs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.testimonials-arrow {
    background: #15803d;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonials-arrow:hover {
    background: #16a34a;
    transform: scale(1.1);
}

.testimonials-arrow:active {
    transform: scale(0.95);
}

.testimonials-content {
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 300px;
    flex: 1;
    max-width: 600px;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    width: 100%;
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.testimonial-card.active {
    display: block;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: #15803d;
    font-size: 1.1rem;
    font-style: normal;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #6b7280;
}



.features {
    position: relative;
    padding: 4rem 0;

    /* IMAGEM DE FUNDO */
    background-image: url("../imagem.img/6075834.jpg");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.features::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0b4e23 0%, #1a7a3e 100%); /* verde com transparência */
    z-index: 0;
}


.features .container {
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 145px; 
    width: 170px;
}

/* ========== ANIMAÇÕES ========== */

/* Keyframes para animações de entrada */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(22, 163, 74, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(22, 163, 74, 0.6);
    }
}

/* Aplicar animações aos elementos */
header {
    animation: fadeInDown 0.6s ease-out;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-content img {
    animation: zoomIn 0.8s ease-out 0.2s both;
}

.hero-content p {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.section-header h2 {
    animation: fadeInDown 0.6s ease-out;
}

.section-header p {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    animation: pulse 0.6s ease-in-out;
}

.feature-card:hover {
    animation: glow 0.6s ease-in-out;
}

.slide {
    animation: fadeInUp 0.6s ease-out;
}

.slider .slide.active {
    animation: zoomIn 0.5s ease-out;
}

/* ========== BOTÃO WHATSAPP ========== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 700px) {
  .testimonials {
    padding: 2rem 0 1.5rem 0;
  }
  .testimonials-tabs-container {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }
  .testimonials-content {
    min-height: 180px;
    max-width: 98vw;
    padding: 0 0.5rem;
    justify-content: center;
    align-items: center;
  }
  .testimonial-card {
    padding: 1rem 0.7rem;
    font-size: 1rem;
    border-radius: 0.7rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin: 0 auto;
    max-width: 420px;
  }
  .testimonial-text {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    text-align: center;
  }
  .testimonial-author strong,
  .testimonial-author span {
    text-align: center;
    display: block;
  }
  .testimonials-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    margin: 0 auto 0.5rem auto;
  }
  .testimonials-add {
    margin-top: 1.2rem;
    text-align: center;
  }
}



 /* ========== HAMBÚRGUER BUTTON ========== */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            border-radius: 8px;
            transition: background 0.15s;
        }
        .hamburger-btn:hover {
            background: rgba(255,255,255,0.15);
        }
        .bar {
            display: block;
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                        opacity 0.25s ease,
                        width 0.3s ease;
            transform-origin: center;
        }
        .hamburger-btn.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger-btn.open .bar:nth-child(2) { opacity: 0; width: 0; }
        .hamburger-btn.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
        /* ========== OVERLAY ========== */
        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0);
            pointer-events: none;
            transition: background 0.35s ease;
            z-index: 1100;
        }
        .nav-overlay.visible {
            background: rgba(0,0,0,0.4);
            pointer-events: all;
        }
 
        /* ========== SIDEBAR ========== */
        .side-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 280px;
            height: 100%;
            background: #fff;
            border-right: 1px solid rgba(0,0,0,0.08);
            box-shadow: 4px 0 24px rgba(0,0,0,0.12);
            transform: translateX(-100%);
            transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 1200;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        .side-nav.open { transform: translateX(0); }
 
        .side-nav-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 18px 12px;
            border-bottom: 1px solid rgba(0,0,0,0.07);
            flex-shrink: 0;
            background: #0b4e23;
        }
        .side-nav-logo {
            height: 52px;
            width: auto;
        }
        .side-close-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: none;
            background: rgba(255,255,255,0.15);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            line-height: 1;
            transition: background 0.15s;
        }
        .side-close-btn:hover { background: rgba(255,255,255,0.3); }
 
        .side-nav-links {
            flex: 1;
            padding: 12px;
            overflow-y: auto;
        }
 
        .side-nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 12px;
            border-radius: 8px;
            font-size: 15px;
            color: #444;
            cursor: pointer;
            text-decoration: none;
            opacity: 0;
            transform: translateX(-16px);
            transition: background 0.15s, color 0.15s, opacity 0.3s ease, transform 0.3s ease;
        }
        .side-nav.open .side-nav-item { opacity: 1; transform: translateX(0); }
        .side-nav.open .side-nav-item:nth-child(1) { transition-delay: 0.06s; }
        .side-nav.open .side-nav-item:nth-child(2) { transition-delay: 0.10s; }
        .side-nav.open .side-nav-item:nth-child(3) { transition-delay: 0.14s; }
        .side-nav.open .side-nav-item:nth-child(4) { transition-delay: 0.18s; }
        .side-nav.open .side-nav-item:nth-child(5) { transition-delay: 0.22s; }
 
        .side-nav-item:hover { background: #f0fdf4; color: #0b4e23; }
        .side-nav-item.active { background: #e8f5ed; color: #0b4e23; font-weight: 600; }
 
        .side-nav-item svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            opacity: 0.55;
        }
        .side-nav-item.active svg,
        .side-nav-item:hover svg { opacity: 1; }
 
        .side-divider {
            height: 1px;
            background: rgba(0,0,0,0.07);
            margin: 8px 12px;
        }
 
        .side-nav-footer {
            padding: 14px 18px 20px;
            border-top: 1px solid rgba(0,0,0,0.07);
        }
        .side-btn-login {
            display: block;
            width: 100%;
            padding: 11px;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: #0b4e23;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.15s;
        }
        .side-btn-login:hover { background: #15803d; }
 
        /* Mostrar hambúrguer só no mobile */
        @media (max-width: 768px) {
            .hamburger-btn { display: flex; }
            /* esconde o botão antigo caso ainda exista */
            .mobile-menu-btn { display: none !important; }
        }