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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Aptos', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================
HEADER
======================== */
header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-top {
    background: #0a5c25;
    padding: 8px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left {
    display: flex;
    gap: 20px;
}

.header-top-left a {
    color: #ffffff;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-top-left a:hover {
    text-decoration: underline;
}

.header-top-right {
    display: flex;
    gap: 16px;
}

.header-top-right a {
    color: #ffffff;
    font-size: 13px;
}

.header-top-right a:hover {
    text-decoration: underline;
}

.header-main {
    padding: 12px 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-divider {
    width: 1px;
    height: 40px;
    background: #0a5c25;
}

nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav>a,
.nav-dropdown>a {
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 4px;
    transition: all 0.2s;
}

nav>a:hover,
.nav-dropdown:hover>a {
    background: #f5f5f5;
    color: #0a5c25;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown>a i {
    font-size: 10px;
    transition: transform 0.2s;
}

.nav-dropdown:hover>a i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #333333;
    border-bottom: 1px solid #f0f0f0;
}

.nav-dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-dropdown-menu a:hover {
    background: #f8f8f8;
    color: #0a5c25;
}

.nav-dropdown-menu a i {
    color: #0a5c25;
    width: 16px;
}

.nav-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-left: 8px;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #1fb855, #0f7a6b) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333333;
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 1001;
    padding: 60px 20px 20px;
    transition: right 0.3s;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    color: #333333;
    cursor: pointer;
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: #333333;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu a:hover {
    color: #0a5c25;
}

.mobile-menu-title {
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 8px;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* ========================
HERO / CAROUSEL
======================== */
.hero {
    margin-top: 110px;
    position: relative;
    background: linear-gradient(135deg, #0a5c25 0%, #0d7e33 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/slide/slide-1.JPG') center center / cover no-repeat;
    opacity: 0.08;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #76c42c;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-primary {
    background: #ffffff;
    color: #0a5c25;
}

.btn-primary:hover {
    background: #f0f0f0;
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #0a5c25;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.stat-card.selo-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card.selo-card img {
    max-height: 80px;
    width: auto;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
}

/* ========================
SECTIONS
======================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: #e8f5e9;
    color: #0a5c25;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
#quem {
    background: #f9f9f9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-year {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #0a5c25;
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(10, 92, 37, 0.3);
}

.about-year-number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.about-year-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-content h3 {
    font-size: 28px;
    color: #333333;
    margin-bottom: 20px;
}

.about-content p {
    color: #555555;
    margin-bottom: 16px;
}

.about-content strong {
    color: #0a5c25;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.about-feature i {
    color: #0a5c25;
    font-size: 18px;
}

.about-feature span {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

/* Products Section */
#produtos {
    background: #ffffff;
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.tab-btn:hover {
    border-color: #0a5c25;
    color: #0a5c25;
}

.tab-btn.active {
    background: #0a5c25;
    border-color: #0a5c25;
    color: #ffffff;
}

.products-content {
    display: none;
}

.products-content.active {
    display: block;
}

.products-intro {
    text-align: center;
    margin-bottom: 30px;
}

.products-intro h3 {
    font-size: 24px;
    color: #333333;
    margin-bottom: 8px;
}

.products-intro p {
    color: #666666;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s;
}

.product-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    height: 200px;
    background: #f5f5f5;
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0a5c25;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
}

.product-description {
    font-size: 14px;
    color: #666666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0a5c25;
    font-size: 14px;
    font-weight: 600;
}

.product-cta:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a5c25 0%, #0d7e33 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: center center / cover no-repeat;
    opacity: 0.08;
}

.cta-section.cta-1::before {
    background-image: url('/img/slide/slide-2.JPG');
}

.cta-section.cta-2::before {
    background-image: url('/img/slide/slide-3.JPG');
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    font-size: 16px;
    padding: 16px 32px;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1fb855, #0f7a6b);
}

/* Stores Section */
#lojas {
    background: #f9f9f9;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.store-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.store-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.store-icon {
    width: 40px;
    height: 40px;
    background: #e8f5e9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.store-icon i {
    color: #0a5c25;
    font-size: 16px;
}

.store-type {
    font-size: 10px;
    color: #0a5c25;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 2px;
}

.store-name {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 4px;
}

.store-name a:hover {
    color: #0a5c25;
}

.store-address {
    font-size: 12px;
    color: #666666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.store-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.store-whatsapp:hover {
    background: linear-gradient(135deg, #1fb855, #0f7a6b);
}

/* Contact Section */
#contato {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-box {
    background: #f9f9f9;
    padding: 32px;
    border-radius: 8px;
}

.contact-form-box h3 {
    font-size: 22px;
    color: #333333;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    background: #ffffff;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a5c25;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: #0a5c25;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    transition: background 0.2s;
}

.form-submit:hover {
    background: #084a1e;
}

.contact-info h3 {
    font-size: 22px;
    color: #333333;
    margin-bottom: 16px;
}

.contact-info>p {
    color: #666666;
    margin-bottom: 24px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: #e8f5e9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    color: #0a5c25;
    font-size: 20px;
}

.contact-item-content h4 {
    font-size: 15px;
    color: #333333;
    margin-bottom: 4px;
}

.contact-item-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

.contact-item-content a {
    color: #0a5c25;
}

.contact-item-content a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ffffff;
}

.footer-map {
    height: 300px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-content {
    padding: 50px 0;
    text-align: center;
}

.footer-content .selo-footer {
    max-width: 100px;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-copyright {
    color: #888888;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-credits {
    color: #666666;
    font-size: 13px;
}

.footer-credits a {
    color: #76c42c;
}

.footer-credits a:hover {
    text-decoration: underline;
}

.sitelock-container {
    margin-top: 20px;
}

.sitelock-container img {
    max-height: 50px;
    width: auto;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

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

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border-radius: 8px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.modal-content h4 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 12px;
}

.modal-content p {
    color: #666666;
    margin-bottom: 24px;
}

.modal-btn {
    padding: 12px 24px;
    background: #0a5c25;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.modal-btn:hover {
    background: #084a1e;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-top {
        display: none;
    }

    .hero {
        margin-top: 74px;
    }

    nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-year {
        right: 20px;
        bottom: -15px;
    }

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

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

    .store-card {
        padding: 14px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .products-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

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

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .stores-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 40px;
    }
}