:root {
    --green: #6d8f3c;
    --light-gray: #f8f8f8;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff;
}


.top-bar {
    background: var(--green);
    color: white;
    font-size: 14px;
    margin: -30px auto 0;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}


/* ===== HEADER FIXO COM ANIMAÇÃO SUAVE ===== */
.header {
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1150px;
    margin: -30px auto 0;
    position: relative;
    z-index: 10;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* animação ultra suave */
    transform: translateY(0);
}

/* ============= ADIÇÕES PARA HAMBURGER E MENU MOBILE ============= */

/* Hamburger – escondido por defeito (só aparece em mobile) */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.hamburger:hover img {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Overlay mobile */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menu lateral mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
    transition: left 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

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

.mobile-menu-header {
    padding: 30px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.mobile-menu-header img {
    height: 70px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 36px;
    color: #999;
    cursor: pointer;
}

.mobile-nav a {
    display: block;
    padding: 18px 25px;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a:hover {
    background: #f8fcf6;
    color: var(--green);
    padding-left: 35px;
    transition: all 0.3s;
}


/* ============= RESPONSIVO – ALTERAÇÕES NOS @media ============= */



@media (max-width: 768px) {

    /* Para o telemovel */
    .top-bar {
        display: none;
    }

    /* Mostra hamburger */
    .hamburger {
        display: block;
    }

    /* Esconde navegação desktop */
    nav {
        display: none;
    }

    /* Ajustes gerais no header */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        z-index: 500;
        border-radius: 0%;
        margin-top: 0px;
    }

    body {
        padding-top: 70px;
        /* ajusta à altura real do header */
    }

    .logo {
        height: 80px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .icons img {
        width: 26px;
        height: 26px;
    }

    .icons {
        gap: 20px;
    }

    .mobile-nav a {
        display: block;
        padding: 18px 25px;
        font-size: 18px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-nav a:hover {
        background: #f8fcf6;
        color: var(--green);
        padding-left: 35px;
        transition: all 0.3s;
    }
}


/* Top bar desaparece quando scroll (opcional, mas fica mais clean) */
.top-bar {
    transition: all 0.4s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.logo {
    height: 10px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 150px;
    width: auto;
    max-width: 210px;
    margin-left: 20px;
}

nav a {
    margin: 0 18px;
    text-decoration: none;
    color: #333;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    transition: color 0.3s;
}

nav a.active {
    color: var(--green) !important;
    font-weight: 480;
}

nav a:hover {
    color: var(--green);
}

.icons {
    display: flex;
    align-items: center;
    gap: 26px;
}

.icons a {
    display: block;
    width: 20px;
    height: 20px;
    transition: all 0.3s;
    flex-shrink: 0;
    border-radius: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.25s ease;
    position: relative;
    overflow: visible;
}

.icons a:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icons .cart-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: var(--green);
    color: white;
    font-size: bold 11px/1 Arial;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    pointer-events: none;
}

/* ===== TOP BAR – ÍCONES SOCIAIS ===== */
.top-social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-social-icons a {
    display: block;
    width: 15px;
    height: 15px;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.top-social-icons a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.top-social-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsivo – mobile fica um pouco menor */
@media (max-width: 768px) {
    .top-social-icons {
        gap: 14px;
    }

    .top-social-icons a {
        width: 22px;
        height: 22px;
    }
}

.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background: linear-gradient(180deg, #f9fcf6 0%, #ffffff 100%);
    margin: -50px auto 0;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.hero-content,
.decor-branch,
.plant-grid {
    position: relative;
    z-index: 2;
}


@media (max-width: 768px) {
    .hero-video-bg video {
        object-fit: cover;
        height: 120%;
    }

    .hero-overlay {
        background: rgba(255, 255, 255, 0.75);
    }
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 110%;
    background: radial-gradient(circle at 100% 0%, #edf7e8 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}


.hero-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin-top: -40px;
}


.hero-image {
    max-width: none !important;
    width: 700px !important;
    height: 700px !important;
    margin-left: -120px !important;
    margin-bottom: -380px !important;
    margin-top: 20px !important;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
    z-index: 4 !important;
    pointer-events: none;
    transform: rotate(-3deg);
}


.hero-text {
    max-width: 750px;
    margin-right: 70px;
    z-index: 5;
}

.hero-text .tag {
    color: var(--green);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.hero-text h1 {
    font-size: 65px;
    line-height: 1.1;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.hero-text h1 span {
    color: var(--green);
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}


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

.hero-buttons a {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: #5a7a30;
    transform: translateY(-3px);
}

.btn-secondary {
    background: white;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-secondary:hover {
    background: #f0f8eb;
    transform: translateY(-3px);
}

.hero-buttons i {
    font-size: 20px;
}


.plant-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    margin-left: 370px !important;
}

.plant-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    width: 160px;
    transition: transform 0.3s;
}

.plant-card:hover {
    transform: translateY(-10px);
}

.plant-card img {
    width: 100%;
    height: 70px;
    object-fit: contain;
    margin-bottom: 16px;
}

.plant-card h3 {
    font-size: 18px;
    color: #333;
}


.decor-branch {
    position: absolute;
    right: -5px;
    top: 40%;
    transform: translateY(-50%);
    width: 800px;
    opacity: 0.6;
    z-index: 1;
}


.hero-image {
    max-width: 820px !important;
    margin-left: -80px !important;
    margin-bottom: -300px !important;
    z-index: 4 !important;
    pointer-events: none;
}

.categories-section {
    pointer-events: none;
}

.categories-section>div>* {
    pointer-events: auto;
}




.cards-section {
    margin-top: -120px;
    width: 100%;
    position: relative;
    padding: 100px 20px 140px;
    background: transparent;
    display: flex;
    justify-content: center;
}


.cards-container {
    background: rgb(60, 63, 55);
    border-radius: 10px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(84, 25, 25, 0.08);
    width: 100%;
    max-width: 1240px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;

}


.card {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 990px;
    height: 330px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    color: rgb(255, 255, 255);
}

.card-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
    font-family: "Lato", sans-serif;
}

.card-content p {
    font-size: 16px;
    margin: 0 0 24px 0;
    opacity: 0.95;
    font-family: "Lato", sans-serif;
}

.card-content button {
    background-color: #4f7f3f;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Lato", sans-serif;
}

.card-content button:hover {
    background-color: #5a9248;
    transform: translateY(-3px);
}


@media (max-width: 900px) {
    .card {
        min-width: 100%;
        height: 400px;
    }

    .card-content {
        align-items: center;
        text-align: center;
    }

    .cards-container {
        padding: 40px 20px;
    }
}

.new-arrivals {
    padding: 10px 20px 80px;
    background: #ffffff;
}

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    letter-spacing: -1px;
    margin: 0;
}

.browse-all {
    font-size: 17px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.browse-all:hover {
    color: var(--green);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.product-card {
    position: relative;
    background: transparent;
}

.product-wrapper {
    margin-bottom: 20px;
    position: relative;
}

.product-image-box {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 270px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.4s ease;
}

.product-card:hover .product-image-box {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-image-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 5;
}

.wishlist:hover {
    background: var(--green);
    transform: scale(1.1);
}

.wishlist svg {
    width: 22px;
    height: 22px;
    stroke: #666;
}

.wishlist:hover svg {
    stroke: white;
}



.title-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.title-price h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.old-price {
    font-size: 15px;
    color: #999;
    text-decoration: line-through;
}

.rating-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    color: #ffa534;
    font-size: 16px;
}

.rating span {
    color: #999;
    margin-left: 6px;
    font-size: 14px;
}

.new-price {
    font-size: 24px;
    font-weight: 800;
    color: #000;
}


.add-to-cart {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    background: var(--green);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(109, 143, 60, 0.35);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.product-card:hover .add-to-cart {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.add-to-cart:hover {
    background: #5a7a30;
    transform: translateX(-50%) translateY(-3px);
}


@media (max-width: 768px) {
    .section-header h2 {
        font-size: 40px;
    }

    .product-image-box {
        height: 300px;
        padding: 20px;
    }

    .new-price {
        font-size: 22px;
    }
}

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

.benefits-section {
    position: relative;
    background: #6d8f3c;
    padding: 30px 20px;
    overflow: hidden;
    margin-top: 80px;
    color: white;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 44px;
    height: 44px;
    filter: brightness(0) invert(1);
}

.benefit-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px 0;
    font-family: "Lato", sans-serif;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
    font-family: "Lato", sans-serif;
}


.leaf-left {
    position: absolute;
    margin-left: 30px;
    top: 10px;
    transform: translateY(-50%);
    width: 220px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

.leaf-right {
    position: absolute;
    right: -110px;
    top: -5%;
    transform: translateX(-50%);
    width: 220px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

.benefit-item+.benefit-item {
    position: relative;
}


.benefit-item+.benefit-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.25);
}


@media (max-width: 768px) {
    .benefits-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .benefit-item+.benefit-item::before {
        display: none;
    }

    .leaf-left,
    .leaf-right {
        display: none;
    }
}

.multi-products-section {
    padding: 100px 20px 120px;
    background: rgb(245, 245, 245);
}

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

.multi-header-tabs {
    position: relative;
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    padding-bottom: 20px;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 36px;
    font-weight: 900;
    color: #999;
    letter-spacing: -1px;
    padding: 0 10px 16px;
    cursor: pointer;
    position: relative;
    transition: color 0.4s ease;
    z-index: 2;
}

.tab-btn:hover {
    color: var(--green);
}

.tab-btn.active {
    color: var(--green);
}

.tab-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 5px;
    background: var(--green);
    border-radius: 3px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.tab-btn[data-tab="top-rating"].active~.tab-line {
    transform: translateX(12px);
}

.tab-btn[data-tab="best-sellers"].active~.tab-line {
    transform: translateX(235px);
}

.tab-btn[data-tab="featured"].active~.tab-line {
    transform: translateX(480px);
}


.multi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

.multi-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
}


.product-card {
    position: relative;
    background: transparent;
}

.product-wrapper {
    margin-bottom: 20px;
    position: relative;
}

.product-image-box {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 270px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.4s ease;
}

.product-card:hover .product-image-box {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-image-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.wishlist:hover {
    background: var(--green);
    transform: scale(1.1);
}

.wishlist svg {
    width: 22px;
    height: 22px;
    stroke: #666;
}

.wishlist:hover svg {
    stroke: white;
}

.add-to-cart {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    background: var(--green);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(109, 143, 60, 0.35);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card:hover .add-to-cart {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.add-to-cart:hover {
    background: #5a7a30;
}



.title-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.title-price h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.old-price {
    font-size: 15px;
    color: #999;
    text-decoration: line-through;
}

.rating-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    color: #ffa534;
    font-size: 16px;
}

.rating span {
    color: #999;
    margin-left: 6px;
    font-size: 14px;
}

.new-price {
    font-size: 24px;
    font-weight: 800;
    color: #000;
}

/* Responsivo */
@media (max-width: 992px) {
    .multi-grid {
        grid-template-columns: 1fr;
    }

    .tab-line {
        width: 70px;
        height: 4px;
    }

    .tab-btn[data-tab="best-sellers"].active~.tab-line {
        transform: translateX(145px);
    }

    .tab-btn[data-tab="featured"].active~.tab-line {
        transform: translateX(310px);
    }
}

@media (max-width: 768px) {
    .multi-header-tabs {
        gap: 40px;
        flex-wrap: wrap;
    }

    .tab-btn {
        font-size: 28px;
    }

    .multi-products-section {
        padding: 80px 20px;
    }
}

.reviews-section {
    max-width: 1180px;
    margin: 70px auto;
    text-align: center;
    padding: 0 1px;
}

.reviews-wrapper {
    position: relative;
    /* pai para as folhas */
    margin-top: 100px;
}

.reviews-wrapper {
    position: relative;
}

.ramo-left,
.ramo-right {
    position: absolute;
    pointer-events: none;
    width: 420px;
    z-index: 1;
    opacity: 0.8;
}

.ramo-left {
    left: 0px;
    top: 73vh;
    /* 15% da altura da janela */
    transform: translateY(-50%);
    width: 400px;
    z-index: -1;
}

.ramo-right {
    right: 0px;
    top: -15vh;
    position: absolute;
    width: 420px;
}

.reviews-section h4 {
    color: var(--green);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.reviews-section h2 {
    font-size: 42px;
    margin: 0 0 50px 0;
}

.reviews-section h2 strong {
    color: var(--green);
}

.reviews-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slides-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.reviews-container {
    flex: 0 0 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 10px;
    box-sizing: border-box;
}

.review-card {
    width: 50%;
    background: #f9f9f9;
    border-radius: 15px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.review-card:nth-child(2) {
    background: #f3fbea;
}

.review-top {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    align-items: center;
}

.review-top .stars {
    color: #ffc400;
    font-size: 20px;
    margin-bottom: 8px;
}

.review-top h3 {
    margin: 0 0 4px 0;
    font-size: 20px;
}

.review-top p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

.review-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review-text {
    padding: 0 30px 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    font-style: italic;
}

.dots {
    margin-top: 30px;
}

.dot {
    width: 9px;
    height: 9px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--green);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
    }

    .review-card {
        width: 100%;
    }
}

.site-footer {
    background: #1a2e1a;
    color: #e0f0d8;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green), #8bc34a, var(--green));
}

.footer-top {
    background: #0f1f12;
    padding: 80px 20px 60px;
    position: relative;
}

.footer-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(109, 143, 60, 0.3);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.footer-logo {
    height: 120px;
    margin-bottom: 20px;
}

.logo-col p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(109, 143, 60, 0.3);
    color: #e0f0d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--green);
    transform: translateY(-4px);
}

.footer-col h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--green);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #c0e0b8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--green);
    padding-left: 6px;
}

.newsletter-form {
    display: flex;
    margin: 20px 0;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 15px;
    outline: none;
}

.newsletter-form button {
    background: var(--green);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: #5a7a30;
}

.newsletter-col small {
    font-size: 12px;
    opacity: 0.8;
}

.newsletter-col a {
    color: var(--green);
    text-decoration: underline;
}

.footer-bottom {
    background: #0a150c;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0 0 12px 0;
    opacity: 0.9;
}

.payment-icons img {
    height: 32px;
    margin: 0 8px;
    filter: brightness(0) invert(-1);
    opacity: 0.7;
}

/* Responsivo */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .newsletter-col {
        grid-column: 1 / -1;
    }
}

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 50px;
        margin-bottom: 12px;
    }

    .newsletter-form button {
        border-radius: 50px;
    }
}

.faq-final {
    padding: 90px 20px;
    background: #f8fcf6;
}

.faq-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.faq-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.support-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
    text-align: center;
}

.support-icon {
    margin-bottom: 20px;
}

.support-icon img {
    width: 64px;
    height: 64px;
}

.support-card h3 {
    font-size: 24px;
    margin: 0 0 16px 0;
    color: #222;
}

.support-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
}

.whatsapp-btn {
    background: var(--green);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #5a7a30;
    transform: translateY(-3px);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.faq-question i {
    color: var(--green);
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f9fbea;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 24px 28px;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Responsivo */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-sidebar {
        position: static;
    }

    .faq-title h2 {
        font-size: 36px !important;
        text-align: center;
    }

    .support-card {
        margin-top: 30px;
    }
}

.scroll-marquee-section {
    padding: 30px 0;
    background: #ffffff;
    border-top: 1px solid #f0f5eb;
    border-bottom: 1px solid #f0f5eb;
    overflow: hidden;
    margin-top: -70px;
}

.scroll-marquee-wrapper {
    width: 100%;
}

.scroll-marquee-content {
    display: flex;
    gap: 40px;
    font-size: 15px;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    will-change: transform;

    /* O segredo: movimento ligado ao scroll da página */
    transform: translateX(0);
    animation: none !important;
}

/* Separador discreto (como no site) */
.scroll-marquee-item::after {
    content: "✦";
    margin-left: 80px;
    color: #87a867;
    font-size: 12px;
}

/* Remove o último separador */
.scroll-marquee-item:last-child::after {
    display: none;
}

/* Responsivo */
@media (max-width: 768px) {
    .scroll-marquee-content {
        gap: 50px;
        font-size: 14px;
    }

    .scroll-marquee-item::after {
        margin-left: 50px;
    }
}

/* Carrinho lateral */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: var(--green);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -480px;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: #2f4312;
    color: white;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.cart-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #aaa;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
}

.cart-close:hover {
    color: white;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.cart-empty p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--green)
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #333;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
}

.cart-item-price {
    color: #4ade80;
    font-weight: 600;
}

.remove-item {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 14px;
    margin-top: 8px;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid #333;
    background: #385116;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    margin-bottom: 20px;
}

.cart-total strong {
    color: #4ade80;
}

.cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.btn-view-cart,
.btn-checkout {
    padding: 14px 20px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-view-cart {
    background: transparent;
    border: 2px solid #444;
    color: white;
}

.btn-view-cart:hover {
    background: #333;
}

.btn-checkout {
    background: #4ade80;
    color: black;
}

.btn-checkout:hover {
    background: #69f09a;
}

/* Botão flutuante do carrinho */
.cart-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 998;
    transition: all 0.3s;
}

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

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    font-size: 12px;
    font-weight: bold;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

/* OVERLAY ESCURO PERFEITO + BLUR */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.70);
    backdrop-filter: blur(6px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Carrinho entra pela direita */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -480px;
    width: 420px;
    max-width: 92vw;
    height: 100vh;
    background: #2f4312;
    color: white;
    z-index: 1000;
    transition: right 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

/* Evita scroll no body quando o carrinho está aberto */
body.cart-open {
    overflow: hidden;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    z-index: 9998;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 680px;
    background: #1a1f16;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Close button */
.search-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all .3s;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Conteúdo */
.search-content {
    padding: 80px 60px;
    text-align: center;
    color: white;
}

.search-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 42px;
    margin: 0 0 40px;
    font-weight: 400;
}

/* Input + botão */
.search-input-wrapper {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

#searchInput {
    width: 100%;
    padding: 22px 70px 22px 28px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    backdrop-filter: blur(10px);
}

#searchInput::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#searchInput:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
}

.search-submit {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 56px;
    height: 56px;
    background: var(--green);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all .3s;
}

.search-submit:hover {
    transform: scale(1.1);
    background: #5a7a30;
}

/* Resultados */
.search-results {
    margin-top: 40px;
    max-height: 400px;
    overflow-y: auto;
    text-align: left;
}

.search-result-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    text-decoration: none;
    transition: all .3s;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.08);
    padding-left: 10px;
}

.search-result-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
}

.search-result-item strong {
    font-size: 18px;
}

.search-result-item span {
    color: #a0da8c;
    font-weight: 600;
}

.search-illustration {
    margin-top: 50px;
    opacity: 0.6;
}

/* LOGIN MODAL */
.login-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 999;
}

.login-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 100%;
    max-width: 460px;
    max-height: 100vh;
    /* largura ideal */
    background: white;
    border-radius: 28px;
    box-shadow: 0 25px 80px rgba(109, 143, 60, 0.3);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.login-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.login-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 40px;
    height: 40px;
    background: #f0fdf4;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--green);
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.login-close:hover {
    background: var(--green);
    color: white;
    transform: rotate(90deg);
}

.login-wrapper {
    padding: 40px 45px 50px;
    text-align: center;
    position: relative;
}

.login-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 28px;
    margin: 15px 0 8px;
    color: #1a1a1a;
    margin-top: -15px;
}

.login-header p {
    color: #666;
    margin-bottom: 30px;
}

.login-logo {
    height: 80px;
    margin-bottom: 10px;
}

.login-logo img {
    height: 100%;
    width: 100%
}

.login-tabs {
    display: flex;
    margin-bottom: 35px;
    position: relative;
    background: 2px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.tab-link {
    flex: 1;
    padding: 14px;
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.tab-link.active {
    color: var(--green);
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    transition: left 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.login-form {
    display: none;
    animation: fadeIn 0.5s;
}

.login-form.active {
    display: block;
}

.input-box {
    position: relative;
    margin-bottom: 20px;
}

.input-box input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #eee;
    border-radius: 14px;
    font-size: 16px;
    transition: 0.3s;
}

.input-box input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(109, 143, 60, 0.15);
}

.input-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 18px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 25px;
    font-size: 14.5px;
}

.form-footer a {
    color: var(--green);
    text-decoration: none;
}

.login-btn {
    width: 100%;
    padding: 16px;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 20px;
}

.login-btn:hover {
    background: #5a7a30;
    transform: translateY(-2px);
}

.or-divider {
    position: relative;
    margin: 25px 0;
    color: #aaa;
    font-size: 14px;
}

.or-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
}

.or-divider span {
    background: white;
    padding: 0 20px;
}


.leaf-deco {
    position: absolute;
    width: 120px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.leaf-left {
    bottom: -20px;
    left: -30px;
    transform: rotate(15deg);
}

.leaf-right {
    top: -30px;
    right: -40px;
    transform: rotate(-30deg);
}

/* Responsivo */
@media (max-width: 480px) {
    .login-modal {
        max-width: 92%;
    }

    .login-wrapper {
        padding: 35px 30px;
    }

    .login-header h2 {
        font-size: 24px;
    }
}

.user-area {
    background: none;
}

.user-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.user-btn img,
.user-avatar-header {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50%;
    display: block;
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 16px;
    width: 300px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.user-area.show .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-info {
    /* O QUE FAZ COM QUE O HEADER FIQUE MAIOR - REVER ISTO! */
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info strong {
    font-size: 16px;
    color: #1a1a1a;
    display: block;
    margin-bottom: 4px;
}

.user-info small {
    font-size: 13px;
    color: #666;
}

.user-links a,
.logout-form button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    color: #444;
    text-decoration: none;
    font-size: 15px;
    width: 100%;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
}

.user-links a:hover,
.logout-form button:hover {
    background: #f0f8eb;
    color: var(--green);
    padding-left: 30px;
}

.user-links i {
    font-size: 18px;
    width: 22px;
    color: var(--green);
}

.user-links hr {
    margin: 8px 0;
    border: none;
    border-top: 1px solid #eee;
}

.logout-form button {
    color: #e74c3c;
}

.logout-form button:hover {
    background: #ffeaea;
    color: #c0392b;
}

.config-submenu {
    max-height: 0;
    overflow: hidden;
    background: #8ecf6e;
    border-radius: 16px;
    margin: 0 14px 10px 14px;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.45s ease;
}

.config-submenu.open {
    max-height: 100px;
    padding: 10px 0;
}

/* CONFIGURAÇÕES + SUBMENU - SIMPLES E FUNCIONAL */

.config-toggle .arrow {
    font-size: 13px;
    color: #999;
    transition: transform 0.35s ease;
}

.config-toggle.active .arrow {
    transform: rotate(90deg);
    color: var(--green);
}

.config-toggle:hover {
    background: #f5fbea;
}

.config-submenu {
    max-height: 0;
    overflow: hidden;
    background: #f8fcf6;
    border-radius: 16px;
    margin: 0 14px 10px 14px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.config-submenu.open {
    max-height: 120px;
    padding: 10px 0;
}

.config-submenu a {
    display: block;
    padding: 12px 36px !important;
    font-size: 14.5px;
    color: #444;
    border-radius: 10px;
    margin: 2px 14px;
    transition: all 0.25s ease;
}

.config-submenu a:hover {
    background: #e8f5e0;
    color: var(--green);
    padding-left: 42px !important;
}

.logout-button {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    width: 80%;
    background: none;
    border: none;
    color: #e74c3c;
    font-weight: 500;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.logout-button i {
    width: 24px;
    font-size: 18px;
    color: #e74c3c;
}

.logout-button:hover {
    background: #fee2e2 !important;
    color: #c92a2a !important;
    padding-left: 10px;
}

.logout-button:hover i {
    color: #c92a2a;
}

.dashboard-menu .logout-button {
    all: unset;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 10px;
    color: #e74c3c;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.3s;
}

#passwordOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 999;
}

#passwordOverlay.active {
    opacity: 1;
    visibility: visible;
}

#passwordModal {
    z-index: 1000 !important;
}

.admin-hero {
    text-align: center;
    padding: 140px 20px 100px;
    background: linear-gradient(180deg, #f9fcf6 0%, #fff 100%);
    position: relative;
    overflow: hidden;
    margin-top: -100px;
}

.admin-hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 68px;
    margin-bottom: 10px;
    color: #222;
}

.admin-hero p {
    font-size: 18px;
    color: #666;
}

.leaf-lefts {
    position: absolute;
    left: -0px;
    top: 35%;
    transform: translateY(-50%);
    width: 220px;
    opacity: 0.7;
    pointer-events: none;
}

.leaf-rights {
    position: absolute;
    right: -0px;
    top: 30%;
    width: 220px;
    opacity: 0.7;
    pointer-events: none;
}

/* Formulário */
.create-product-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

.form-full {
    grid-column: 1 / -1;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #222;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(109, 143, 60, 0.15);
}

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

/* Upload de imagem com preview */
.image-upload {
    border: 2px dashed #ccc;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafafa;
}

.image-upload:hover {
    border-color: var(--green);
    background: #f5fbf2;
}

.image-upload i {
    font-size: 48px;
    color: #aaa;
    margin-bottom: 16px;
}

#imagePreview {
    max-width: 100%;
    max-height: 300px;
    margin-top: 20px;
    border-radius: 12px;
    display: none;
}

/* Botão guardar */
.btn-product {
    background: var(--green);
    color: white;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-product:hover {
    background: #5a7a30;
    transform: translateY(-3px);
}

.upload-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.image-upload:hover .upload-icon {
    transform: scale(1.15);
}

.save-icon {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

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

    .admin-hero h1 {
        font-size: 52px;
    }
}

/* Preview da imagem principal */
#mainPreviewContainer {
    text-align: center;
    padding: 10px;
    background: #f8fcf6;
    border-radius: 16px;
    border: 2px dashed #b8d89f;
}

/* Galeria de imagens adicionais */
.gallery-preview {
    background: #f8fcf6;
    padding: 20px;
    border-radius: 16px;
    border: 2px dashed #b8d89f;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.gallery-item .remove-img {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .remove-img {
    opacity: 1;
}

.admin-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px 120px;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: -60px;
}

.admin-card {
    background: white;
    border-radius: 32px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.admin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;

    border-radius: 32px 32px 0 0;
}



.icon {
    width: 100px;
    height: 100px;
    background: rgba(109, 143, 60, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 42px;
    color: var(--green);
}

.admin-card h3 {
    font-size: 28px;
    color: #222;
    margin: 0 0 16px;
    font-weight: 700;
}

.admin-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-actions a {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #5a7a30;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(109, 143, 60, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-secondary:hover {
    background: #f0f8eb;
    transform: translateY(-3px);

}

@media (max-width: 992px) {
    .admin-hero h1 {
        font-size: 52px;
    }

    .admin-hero {
        padding: 120px 20px 80px;
    }
}

@media (max-width: 768px) {
    .admin-grid {
        gap: 30px;
    }

    .admin-card {
        padding: 40px 30px;
    }

    .admin-hero h1 {
        font-size: 44px;
    }

    .leaf-lefts,
    .leaf-rights {
        display: none;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px 140px;
}

.admin-header {
    text-align: center;
    margin: 60px 0 50px;
    position: relative;
}

.admin-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 48px;
    color: #222;
    margin: 0 0 10px;
}

.admin-header p {
    color: #666;
    font-size: 18px;
}

.add-btn {
    position: center;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--green);
    color: white;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 17px;
    box-shadow: 0 10px 30px rgba(109, 143, 60, 0.3);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.add-btn:hover {
    background: var(--green);
    transform: translateY(-50%) translateY(-5px);
    box-shadow: 0 20px 40px rgba(109, 143, 60, 0.4);
}

.search-container {
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
}

#searchInput {
    width: 100%;
    padding: 18px 70px 18px 60px;
    font-size: 17px;
    border: 2px solid #eee;
    border-radius: 50px;
    outline: none;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    z-index: 2;
    color: #222;
}

#searchInput:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 6px rgba(109, 143, 60, 0.15);
}

.search-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    pointer-events: none;
}

.products-table {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* Cabeçalho da tabela */
.table-header {
    background: var(--green);
    color: white;
    padding: 32px 50px;
    font-weight: 600;
    font-size: 17px;
    display: grid;
    grid-template-columns: 3.5fr 1fr 1.5fr 1fr 1.3fr;
    gap: 30px;
    align-items: center;
}

.product-row {
    display: grid;
    grid-template-columns: 3.5fr 1fr 1.5fr 1fr 1.3fr;
    gap: 30px;
    padding: 32px 50px;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.product-row:hover {
    background: var(--light-green);
    transform: translateY(-4px);
}

.product-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-details h4 {
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #222;
}

.product-details small {
    color: #888;
    font-size: 14px;
}

/* Preço, data, stock */
.price {
    font-size: 21px;
    font-weight: 600;
    color: var(--green);
}

.date,
.stock {
    font-size: 16px;
    color: var(--gray);
}

.stock {
    color: var(--green);
    font-weight: 600;
}

.action-cell {
    display: flex;
    align-items: center;
    gap: 18px;
}

.remove-btn {
    color: #ccc;
    font-size: 26px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.remove-btn:hover {
    background: #fff5f5;
    color: #e74c3c;
    transform: scale(1.1);
}

.edit-btn {
    background: var(--green);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(109, 143, 60, 0.3);
}

.edit-btn:hover {
    background: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(109, 143, 60, 0.4);
}

@media (max-width: 1100px) {

    .table-header,
    .product-row {
        grid-template-columns: 2fr 1fr 1.2fr 1fr 1fr;
        gap: 20px;
        padding: 25px 30px;
    }
}

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

    .container {
        padding: 0 30px 100px;
    }

    .admin-header h2 {
        font-size: 40px;
    }

    .add-btn {
        position: static;
        transform: none;
        margin: 30px auto 0;
        display: inline-flex;
    }

    .table-header,
    .product-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }

    .product-info {
        justify-content: center;
    }

    .action-cell {
        justify-content: center;
    }

    .edit-btn {
        width: 80%;
        margin: 15px auto 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        padding: 0 20px;
        margin-top: 0;
    }

    .hero-image {
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        margin: 0 auto 20px !important;
        transform: rotate(0) !important;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
    }

    .hero-text {
        margin-right: 0;
        max-width: 100%;
    }

    .hero-text .tag {
        font-size: 16px;
    }

    .hero-text h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-text h1 span {
        font-size: 48px;
    }

    .hero-text p {
        font-size: 16px;
    }

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

    .hero-buttons a {
        padding: 14px 28px;
        font-size: 15px;
    }

    .plant-grid {
        position: static;
        margin: 40px auto 0 !important;
        justify-content: center;
        gap: 15px;
    }

    .plant-card {
        width: 140px;
        padding: 16px;
    }

    .plant-card img {
        height: 60px;
    }

    .cards-section {
        padding: 60px 20px;
        margin-top: -60px;
    }

    .cards-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .card {
        min-width: 100%;
        height: 380px;
    }

    .card-content {
        padding: 30px;
        align-items: center;
        text-align: center;
    }

    .card-content h2 {
        font-size: 28px;
    }

    .card-content p {
        font-size: 15px;
    }

    .new-arrivals {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 36px;
    }

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

    .product-image-box {
        height: 240px;
        padding: 20px;
    }

    .benefits-section {
        padding: 60px 20px;
    }

    .benefits-container {
        flex-direction: column;
        gap: 40px;
    }

    .benefit-item {
        max-width: 100%;
    }

    .faq-final {
        padding: 70px 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-sidebar {
        position: static;
        top: auto;
    }

    .faq-title h2,
    .faq-title h4 {
        text-align: center;
    }

    .support-card {
        margin-top: 0;
    }

    .reviews-section {
        padding: 0 20px;
        margin: 60px auto;
    }

    .reviews-section h2 {
        font-size: 36px;
    }

    .reviews-container {
        flex-direction: column;
        gap: 30px;
    }

    .review-card {
        width: 100%;
    }

    .review-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ramo-left {
        left: 0px;
        top: 110vh;
        transform: translateY(-50%);
        width: 400px;
        z-index: -1;
        opacity: 0.2;
    }

    .ramo-right {
        right: 0px;
        top: -15vh;
        position: absolute;
        width: 420px;
        z-index: -1;
        opacity: 0.3;
    }

    .review-image img {
        width: 80px;
        height: 80px;
    }

    .scroll-marquee-section {
        margin-top: -40px;
        padding: 25px 0;
    }

    .scroll-marquee-content {
        font-size: 14px;
        gap: 30px;
    }

    .scroll-marquee-item::after {
        margin-left: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .newsletter-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text h1 span {
        font-size: 42px;
    }

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

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

    .plant-grid {
        flex-direction: column;
        align-items: center;
    }

    .plant-card {
        width: 200px;
    }
}

@media (min-width: 769px) {
    .reviews-container {
        min-width: 100%;
        display: flex;
        justify-content: center;
        gap: 40px;
        padding: 20px;
    }

    .review-card {
        width: calc(50% - 20px);
        max-width: 580px;
    }
}

@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        gap: 30px;
        padding: 20px 0;
    }

    .review-card {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .review-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 24px 24px 20px;
    }

    .review-text {
        padding: 0 24px 30px;
        font-size: 17px;
    }

    .dots {
        margin-top: 40px;
    }

    .dot {
        width: 10px;
        height: 10px;
        margin: 0 8px;
    }

    .dot.active {
        transform: scale(1.4);
    }
}

/* ============= ANIMAÇÕES GERAIS - FADE UP SUAVE ============= */
.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay progressivo para elementos em sequência (ex: benefits, produtos, reviews) */
.fade-up:nth-child(1) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(2) {
    transition-delay: 0.2s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.3s;
}

.fade-up:nth-child(4) {
    transition-delay: 0.4s;
}

.fade-up:nth-child(5) {
    transition-delay: 0.5s;
}

/* Animação extra para cards (leve escala ao aparecer) */
.product-card,
.review-card,
.benefit-item,
.card {
    transition: all 0.9s ease;
}

.fade-up.visible.product-card,
.fade-up.visible.review-card,
.fade-up.visible.benefit-item,
.fade-up.visible.card {
    transform: translateY(0) scale(1);
}

.hero-content>* {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.hero-content.visible>* {
    opacity: 1;
    transform: translateY(0);
}

.hero-image {
    opacity: 0;
    transition: opacity 1.2s ease 0.6s, transform 1.2s ease 0.6s;
}


.hero-buttons a {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-content.visible .hero-buttons a {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons a:nth-child(1) {
    transition-delay: 0.9s;
}

.hero-buttons a:nth-child(2) {
    transition-delay: 1.0s;
}

.plant-grid {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease 1.2s;
}

.hero-content.visible+.plant-grid {
    opacity: 1;
    transform: translateY(0);
}

/* ============= HERO PARA TABLETS (768px - 1200px) ============= */
@media (min-width: 768px) and (max-width: 1200px) {
    .hero {
        background: linear-gradient(180deg, #f9fcf6 0%, #ffffff 100%);
    }

    .hero-content {
        max-width: 1000px;
        padding: 0 40px;
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-image {
        width: 600px !important;
        max-width: 80vw !important;
        margin-left: 0px !important;
        margin-bottom: -300px !important;
        margin-top: 0 !important;
        opacity: 1 !important;
    }

    .hero-text {
        max-width: 580px;
        margin: 0 auto;
        text-align: center;
        margin-top: 90px !important;
    }

    .hero-text .tag {
        font-size: 18px;
    }

    .hero-text h1 {
        font-size: 58px;
        line-height: 1.1;
    }

    .hero-text h1 span {
        font-size: 66px;
    }

    .hero-text p {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 24px;
    }

    .hero-buttons a {
        padding: 16px 40px;
        font-size: 17px;
    }

    .ramo-right {
        opacity: 0.7;
        z-index: -1;
    }

    .plant-grid {
        margin: 50px auto 0 !important;
        justify-content: center;
        gap: 24px;
        margin-left: 0 !important;
        margin-right: 0;
    }

    .plant-card {
        width: 180px;
        padding: 24px;
    }

    .plant-card img {
        height: 80px;
    }

    .plant-card h3 {
        font-size: 19px;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .hero-image {
        width: 700px !important;
        margin-left: 0px !important;
        margin-bottom: -350px !important;
    }

    .hero-text h1 {
        font-size: 64px;
    }

    .hero-text h1 span {
        font-size: 72px;
    }

    .plant-card {
        width: 200px;
    }
}

@media (max-width: 768px) {

    .login-modal {
        max-height: 90vh;
        /* não ultrapassa 90% da tela */
        margin: 0 auto;
        transform: translate(-50%, 0);
        top: 0;
        max-width: 92%;
    }

    .login-modal.active {
        transform: translate(-50%, 0);
    }

    .login-wrapper {
        padding: 10px 30px 60px;
        min-height: auto;
    }

    /* Cabeçalho menor */
    .login-header h2 {
        font-size: 12px;
        margin-top: -30px;
    }

    .login-header p {
        font-size: 12px;
        margin-bottom: 24px;
    }
}

/* Product out of stock */
.ribbon {
    position: absolute;
    top: 200px;
    right: 40px;
    background: red;
    color: white;
    padding: 8px 20px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: bold;
}