:root {
    --green: #16a34a;
    --green-dark: #087f35;
    --green-light: #dcfce7;
    --green-soft: #f0fdf4;

    --black: #111827;
    --gray-900: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;

    --white: #ffffff;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.13);

    --radius: 18px;
    --transition: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}


/* =========================
   HEADER
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 78px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--green);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(22, 163, 74, 0.25);
}

.logo div:last-child {
    display: flex;
    flex-direction: column;
}

.logo strong {
    font-size: 17px;
    line-height: 1.1;
    letter-spacing: -0.4px;
}

.logo span {
    font-size: 9px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-top: 3px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-button,
.cart-button {
    border: 0;
    background: var(--gray-100);
    color: var(--gray-700);
    height: 42px;
    border-radius: 11px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    transition: var(--transition);
}

.search-button:hover,
.cart-button:hover {
    background: var(--green-light);
    color: var(--green-dark);
}

.cart-button {
    position: relative;
    padding: 0 14px;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 11px;
    background: var(--gray-100);
    font-size: 20px;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    z-index: 999;
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 20px;
    box-shadow: var(--shadow);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
}

.mobile-menu a:hover {
    background: var(--green-soft);
    color: var(--green);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 650px;
    background:
        radial-gradient(circle at 80% 40%, rgba(22, 163, 74, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fffa 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 50px;
}

.hero-text {
    padding: 70px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 8px 13px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 22px;
}

.pulse {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.12);
}

.hero h1 {
    max-width: 650px;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -3px;
    font-weight: 800;
}

.hero h1 span {
    color: var(--green);
}

.hero p {
    max-width: 540px;
    margin-top: 24px;
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary {
    color: white;
    background: var(--green);
    box-shadow: 0 8px 22px rgba(22, 163, 74, 0.20);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.28);
}

.btn-outline {
    color: var(--gray-700);
    border-color: var(--gray-300);
    background: white;
}

.btn-outline:hover {
    color: var(--green);
    border-color: var(--green);
}

.hero-info {
    display: flex;
    gap: 28px;
    margin-top: 38px;
}

.hero-info div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 11px;
}

.hero-info strong {
    color: var(--green);
}


/* HERO VISUAL */

.hero-visual {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(145deg, #dcfce7, #f0fdf4);
    box-shadow:
        inset 0 0 0 1px rgba(22, 163, 74, 0.08),
        0 30px 80px rgba(22, 163, 74, 0.12);
}

.battery-card {
    position: absolute;
    width: 150px;
    height: 280px;
    border-radius: 23px;
    transform: rotate(-12deg);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.18);
}

.battery-top {
    width: 54px;
    height: 20px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 6px 6px 2px 2px;
    background: #cbd5e1;
}

.battery-body {
    height: 100%;
    border-radius: 23px;
    padding: 50px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, #166534, #16a34a);
    color: white;
}

.battery-body span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.battery-body strong {
    font-size: 27px;
    margin: 10px 0;
}

.battery-body small {
    font-size: 7px;
    opacity: 0.8;
    letter-spacing: 1px;
}

.battery-back {
    margin-left: -190px;
    margin-top: -30px;
    transform: rotate(-22deg);
    opacity: 0.9;
}

.battery-front {
    z-index: 3;
    margin-left: 70px;
    margin-top: 50px;
    transform: rotate(12deg);
}

.battery-front .battery-body {
    background: linear-gradient(160deg, #052e16, #15803d);
}

.floating-tag {
    position: absolute;
    z-index: 5;
    background: white;
    padding: 11px 15px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-700);
    animation: float 4s ease-in-out infinite;
}

.tag-one {
    top: 70px;
    right: 30px;
}

.tag-two {
    bottom: 80px;
    left: 25px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* =========================
   BENEFITS
========================= */

.benefits {
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 25px 20px;
    border-right: 1px solid var(--gray-200);
}

.benefit:first-child {
    padding-left: 0;
}

.benefit:last-child {
    border-right: 0;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--green-soft);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
}

.benefit div:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benefit strong {
    font-size: 12px;
}

.benefit span {
    font-size: 10px;
    color: var(--gray-500);
}


/* =========================
   SECTION HEADING
========================= */

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.section-label {
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 9px;
}

.section-label.light {
    color: #86efac;
}

.section-heading h2 {
    font-size: 34px;
    letter-spacing: -1.5px;
}

.see-all {
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}


/* =========================
   CATEGORIES
========================= */

.categories {
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.category-card {
    position: relative;
    text-align: left;
    min-height: 150px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    overflow: hidden;
}

.category-card::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    right: -50px;
    top: -50px;
    background: var(--green-soft);
    transition: var(--transition);
}

.category-card:hover {
    border-color: rgba(22, 163, 74, 0.35);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-card:hover::after {
    transform: scale(2);
}

.category-icon {
    position: relative;
    z-index: 2;
    width: 45px;
    height: 45px;
    border-radius: 13px;
    background: var(--green-soft);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    margin-bottom: 15px;
}

.category-card h3 {
    position: relative;
    z-index: 2;
    font-size: 14px;
    margin-bottom: 5px;
}

.category-card p {
    position: relative;
    z-index: 2;
    color: var(--gray-500);
    font-size: 10px;
}

.category-arrow {
    position: absolute;
    right: 20px;
    bottom: 19px;
    z-index: 3;
    color: var(--green);
    font-weight: 700;
}


/* =========================
   PRODUCTS
========================= */

.products {
    background: #f8fafc;
}

.product-filters {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.filter {
    border: 0;
    background: white;
    color: var(--gray-500);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.filter:hover,
.filter.active {
    background: var(--green);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(22, 163, 74, 0.18);
}

.product-card.hidden {
    display: none;
}

.product-image {
    height: 230px;
    position: relative;
    background: linear-gradient(145deg, #f8fafc, #f0fdf4);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product-tag {
    position: absolute;
    top: 13px;
    left: 13px;
    background: var(--green);
    color: white;
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 3;
}

.product-placeholder {
    width: 110px;
    height: 150px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.14);
    transition: var(--transition);
}

.product-card:hover .product-placeholder {
    transform: scale(1.06) rotate(-2deg);
}

.battery-product {
    background: linear-gradient(145deg, #166534, #22c55e);
    color: white;
}

.battery-product span {
    font-size: 25px;
}

.aa-product {
    width: 65px;
    height: 135px;
    border-radius: 15px;
    background: linear-gradient(145deg, #1f2937, #111827);
    color: #86efac;
}

.aa-product span {
    font-size: 18px;
}

.watch-product {
    width: 120px;
    height: 150px;
    border-radius: 45%;
    background: linear-gradient(145deg, #d1d5db, #6b7280);
    color: white;
    font-size: 50px;
}

.strap-product {
    width: 75px;
    height: 170px;
    border-radius: 25px;
    background: linear-gradient(90deg, #111827, #374151, #111827);
    color: white;
    font-size: 28px;
}

.box-product {
    width: 145px;
    height: 105px;
    border-radius: 15px;
    background: linear-gradient(145deg, #064e3b, #10b981);
    color: white;
    font-size: 38px;
}

.quick-add {
    position: absolute;
    right: 13px;
    bottom: 13px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: white;
    color: var(--green);
    box-shadow: var(--shadow);
    font-size: 21px;
    line-height: 1;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(5px);
}

.product-card:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}

.quick-add:hover {
    background: var(--green);
    color: white;
}

.product-info {
    padding: 18px;
}

.product-category {
    color: var(--green);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.product-info h3 {
    font-size: 14px;
    margin-top: 7px;
}

.product-description {
    color: var(--gray-500);
    font-size: 10px;
    line-height: 1.5;
    margin-top: 7px;
    min-height: 30px;
}

/* Ajuste do container de preços */
.product-bottom {
    border-top: 1px solid var(--gray-200);
    margin-top: 15px;
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-type small {
    color: var(--gray-500);
    font-size: 9px;
    font-weight: 700;
}

.price-box {
    text-align: right;
}

/* Estilo Cartão (Riscado) */
.price-card {
    display: block;
    color: var(--gray-400);
    font-size: 10px;
    text-decoration: line-through;
}

/* Estilo Pix (Destacado) */
.price-pix {
    display: block;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.price {
    display: flex;
    flex-direction: column;
}

.price small {
    color: var(--gray-400);
    font-size: 8px;
}

.price strong {
    color: var(--black);
    font-size: 17px;
    margin-top: 3px;
}

.add-cart {
    border: 0;
    background: var(--green-soft);
    color: var(--green-dark);
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    transition: var(--transition);
}

.add-cart:hover {
    background: var(--green);
    color: white;
}


/* =========================
   WHOLESALE
========================= */

.wholesale {
    background: white;
}

.wholesale-box {
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(120deg, #052e16, #14532d);
    color: white;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    position: relative;
}

.wholesale-content {
    padding: 60px;
    position: relative;
    z-index: 2;
}

.wholesale-content h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -2px;
    max-width: 550px;
}

.wholesale-content h2 span {
    color: #4ade80;
}

.wholesale-content p {
    max-width: 570px;
    color: #bbf7d0;
    line-height: 1.8;
    font-size: 13px;
    margin-top: 20px;
}

.wholesale-features {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 25px;
}

.wholesale-features div {
    color: #dcfce7;
    font-size: 11px;
}

.wholesale-features strong {
    color: #4ade80;
    margin-right: 6px;
}

.whatsapp-btn {
    background: white;
    color: #166534;
    margin-top: 28px;
}

.whatsapp-btn:hover {
    background: #dcfce7;
    transform: translateY(-2px);
}

.wholesale-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wholesale-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(134, 239, 172, 0.18);
    background: rgba(255, 255, 255, 0.04);
    position: relative;
}

.mini-battery,
.mini-watch {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    font-size: 45px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.18);
}

.mini-battery {
    top: 35px;
    left: 35px;
    transform: rotate(-15deg);
}

.mini-watch {
    bottom: 35px;
    right: 35px;
    transform: rotate(15deg);
}

.mini-battery.two {
    top: 100px;
    right: 20px;
    left: auto;
    transform: rotate(15deg);
    width: 70px;
    height: 70px;
    font-size: 30px;
}


/* =========================
   CTA
========================= */

.cta {
    padding-top: 0;
}

.cta-box {
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-box h2 {
    font-size: 28px;
    margin-bottom: 6px;
}

.cta-box p {
    color: var(--gray-500);
    font-size: 12px;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #052e16;
    color: white;
}

.footer-grid {
    padding: 65px 0;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.3fr 1.3fr;
    gap: 40px;
}

.footer-logo {
    color: white;
}

.footer-logo span {
    color: #86efac;
}

.footer-brand p {
    color: #bbf7d0;
    font-size: 11px;
    line-height: 1.7;
    max-width: 250px;
    margin-top: 17px;
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.socials a {
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    font-weight: 700;
    transition: var(--transition);
}

.socials a:hover {
    background: var(--green);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    font-size: 12px;
    margin-bottom: 7px;
}

.footer-column a,
.footer-column span {
    color: #bbf7d0;
    font-size: 10px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: #86efac;
    font-size: 9px;
}


/* =========================
   CART
========================= */

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    z-index: 1999;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(420px, 100%);
    background: white;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h2 {
    font-size: 24px;
}

.close-cart {
    width: 38px;
    height: 38px;
    border: 0;
    background: var(--gray-100);
    border-radius: 10px;
    font-size: 25px;
    color: var(--gray-600);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 30px;
}

.empty-cart-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--green-soft);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.empty-cart h3 {
    font-size: 16px;
}

.empty-cart p {
    color: var(--gray-500);
    font-size: 11px;
    margin: 8px 0 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.cart-item-info h4 {
    font-size: 12px;
}

.cart-item-info p {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    margin-top: 4px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
}

.quantity-controls button {
    width: 23px;
    height: 23px;
    border: 1px solid var(--gray-200);
    background: white;
    border-radius: 6px;
}

.quantity-controls span {
    font-size: 10px;
    min-width: 15px;
    text-align: center;
}

.remove-item {
    border: 0;
    background: transparent;
    color: #ef4444;
    font-size: 11px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-200);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cart-total span {
    color: var(--gray-500);
    font-size: 12px;
}

.cart-total strong {
    font-size: 22px;
}

.checkout-btn {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 12px;
    background: var(--green);
    color: white;
    font-weight: 800;
}

.checkout-btn:hover {
    background: var(--green-dark);
}

.cart-footer small {
    display: block;
    text-align: center;
    color: var(--gray-400);
    font-size: 9px;
    margin-top: 10px;
}


/* =========================
   SEARCH
========================= */

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-box {
    position: relative;
    width: min(650px, calc(100% - 30px));
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.search-box h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.close-search {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    border: 0;
    border-radius: 9px;
    background: var(--gray-100);
    font-size: 22px;
}

.search-input-wrapper {
    height: 52px;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
}

.search-input-wrapper:focus-within {
    border-color: var(--green);
}

.search-input-wrapper span {
    font-size: 20px;
}

.search-input-wrapper input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    font-size: 13px;
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 15px;
}

.search-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
}

.search-result:hover {
    background: var(--green-soft);
}

.search-result strong {
    font-size: 12px;
}

.search-result span {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
}

.no-results {
    padding: 25px;
    text-align: center;
    color: var(--gray-500);
    font-size: 12px;
}


/* =========================
   WHATSAPP
========================= */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 55px;
    height: 55px;
    z-index: 1000;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.35);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
}


/* =========================
   TOAST
========================= */

.toast {
    position: fixed;
    bottom: 25px;
    left: 50%;
    z-index: 3000;
    transform: translate(-50%, 100px);
    opacity: 0;
    background: #111827;
    color: white;
    border-radius: 12px;
    padding: 13px 17px;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: var(--shadow-lg);
    transition: 0.3s ease;
    pointer-events: none;
}

.toast.active {
    transform: translate(-50%, 0);
    opacity: 1;
}

.toast span {
    width: 22px;
    height: 22px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
}

.toast p {
    font-size: 11px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .nav {
        gap: 18px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        grid-template-columns: 1fr 0.8fr;
    }

    .hero h1 {
        font-size: 50px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit:nth-child(2) {
        border-right: 0;
    }

    .benefit:nth-child(3),
    .benefit:nth-child(4) {
        border-top: 1px solid var(--gray-200);
    }

    .wholesale-content {
        padding: 45px;
    }

    .wholesale-content h2 {
        font-size: 34px;
    }
}


@media (max-width: 760px) {

    .container {
        width: min(100% - 28px, 600px);
    }

    .section {
        padding: 70px 0;
    }

    .header {
        height: 70px;
    }

    .nav {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .search-text {
        display: none;
    }

    .search-button,
    .cart-button,
    .menu-button {
        width: 39px;
        height: 39px;
        justify-content: center;
        padding: 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-text {
        padding: 70px 0 20px;
    }

    .hero h1 {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .hero-visual {
        height: 390px;
        margin-top: 0;
    }

    .hero-circle {
        width: 300px;
        height: 300px;
    }

    .battery-card {
        width: 110px;
        height: 220px;
    }

    .battery-back {
        margin-left: -130px;
    }

    .battery-front {
        margin-left: 50px;
    }

    .floating-tag {
        font-size: 9px;
    }

    .tag-one {
        right: 0;
    }

    .tag-two {
        left: 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-info {
        flex-direction: column;
        gap: 10px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit,
    .benefit:first-child {
        border-right: 0;
        border-bottom: 1px solid var(--gray-200);
        padding: 17px 0;
    }

    .benefit:last-child {
        border-bottom: 0;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .product-filters {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
    }

    .filter {
        white-space: nowrap;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-image {
        height: 190px;
    }

    .product-placeholder {
        transform: scale(0.85);
    }

    .product-info {
        padding: 14px;
    }

    .product-info h3 {
        font-size: 12px;
    }

    .product-description {
        font-size: 9px;
    }

    .price strong {
        font-size: 14px;
    }

    .add-cart {
        padding: 8px 9px;
        font-size: 9px;
    }

    .wholesale-box {
        grid-template-columns: 1fr;
    }

    .wholesale-content {
        padding: 40px 25px;
    }

    .wholesale-content h2 {
        font-size: 32px;
    }

    .wholesale-visual {
        height: 280px;
        padding-bottom: 40px;
    }

    .wholesale-circle {
        width: 220px;
        height: 220px;
    }

    .mini-battery,
    .mini-watch {
        width: 75px;
        height: 75px;
        font-size: 30px;
    }

    .mini-battery {
        top: 25px;
        left: 25px;
    }

    .mini-watch {
        bottom: 25px;
        right: 25px;
    }

    .cta-box {
        padding: 28px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom .container {
        padding: 15px 0;
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 430px) {

    .logo strong {
        font-size: 15px;
    }

    .logo span {
        font-size: 8px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-image {
        height: 165px;
    }

    .quick-add {
        opacity: 1;
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }
}

/* Estilos da Seção Equipe A3MS e Benefícios */
.team-section {
    padding: 40px 20px;
    text-align: center;
    background: #121212;
    color: #ffffff;
    margin: 0 auto 30px auto;
    max-width: 1200px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #f3f4f6;
    font-weight: 700;
}

.team-image-container {
    max-width: 600px;
    height: 350px;
    margin: 0 auto 15px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
}

.team-image-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-image-container img:hover {
    transform: scale(1.02);
}

.team-subtitle {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 25px;
}

/* Grade de Benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
    text-align: left;
}

.benefit-item {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color 0.3s ease;
}

.benefit-item:hover {
    border-color: #3b82f6;
}

.benefit-icon {
    font-size: 1.8rem;
    background: #262626;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item h3 {
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.benefit-item p {
    font-size: 0.82rem;
    color: #9ca3af;
    margin: 0;
    line-height: 1.3;
}

/* Responsivo para celulares */
@media (max-width: 768px) {
    .team-section {
        padding: 25px 15px;
        margin: 0 15px 25px 15px;
    }

    .team-section h2 {
        font-size: 1.6rem;
    }

    .team-image-container {
        height: 220px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}