/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:   #0d0e13;
    --dark:    #161820;
    --grey:    #f4f4f6;
    --grey2:   #e8e8ec;
    --text:    #1a1b23;
    --muted:   #6b7280;
    --white:   #ffffff;
    --primary: #1a56db;
    --primary-h:#1e40af;
    --gold:    #c9a84c;
    --gold-h:  #a87e2f;
    --radius:  14px;
    --r-lg:    22px;
    --shadow:  0 2px 24px rgba(0,0,0,.09);
    --shadow-h:0 8px 40px rgba(0,0,0,.16);
    --font:    "Inter", "Segoe UI", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
    width: min(1160px, 92vw);
    margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════ */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    /* needed so mobile-menu positions relative to header */
    isolation: isolate;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--grey2);
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    height: 64px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

@media (max-width: 480px) {
    .brand-logo {
        height: 48px;
        max-width: 160px;
    }
}

.brand em {
    font-style: normal;
    color: var(--primary);
}

nav {
    display: none;
    align-items: center;
    gap: 28px;
}

nav a {
    font-size: .875rem;
    font-weight: 500;
    color: var(--muted);
    transition: color .2s;
}

nav a:hover { color: var(--text); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .875rem;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
}

.btn:active { transform: scale(.97); }

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover { background: var(--primary-h); }

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--grey2);
    color: var(--text);
}

.btn-outline:hover { border-color: #bbb; }

.btn-cart {
    position: relative;
    background: var(--grey);
    padding: 9px 14px;
    border-radius: 12px;
    color: var(--text);
    font-size: .85rem;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════════════ */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 580px;
    background: var(--black);
}

@media (max-width: 767px) {
    .hero-slider { height: 480px; }
}

.slides-track {
    display: flex;
    height: 100%;
    transition: transform .65s cubic-bezier(.77,0,.175,1);
    will-change: transform;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(10,10,20,.78) 0%,
        rgba(10,10,20,.5) 50%,
        rgba(10,10,20,.15) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
    max-width: 600px;
    padding-bottom: 100px;
}

.slide-tag {
    display: inline-block;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    width: fit-content;
}

.slide-content h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}

.slide-content h1 em {
    font-style: normal;
    color: #ffd585;
}

.slide-content p {
    font-size: 1rem;
    color: rgba(255,255,255,.75);
    line-height: 1.65;
    max-width: 460px;
    margin-bottom: 28px;
}

.slide-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-slide-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    transition: background .2s, transform .15s;
}

.btn-slide-primary:hover { background: var(--primary-h); transform: translateY(-2px); }

.btn-slide-ghost {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border: 1.5px solid rgba(255,255,255,.4);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    transition: border-color .2s, background .2s;
}

.btn-slide-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    margin-bottom: 60px;
}

.slider-arrow:hover { background: rgba(255,255,255,.28); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: background .25s, width .25s;
}

.dot.active {
    background: #fff;
    width: 26px;
}

/* Trust bar */
.trust-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--grey2);
}

.trust-inner {
    display: flex;
    justify-content: center;
    gap: 0;
    overflow: hidden;
}

.trust-inner span {
    padding: 11px 22px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: .2px;
    border-right: 1px solid var(--grey2);
    white-space: nowrap;
}

.trust-inner span:last-child { border-right: none; }


/* ═══════════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════════ */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }

.section-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
    letter-spacing: -.4px;
}

.section-header h2 strong { font-weight: 800; }


/* ═══════════════════════════════════════════════════════
   PROFILES
═══════════════════════════════════════════════════════ */
.section-profiles {
    padding: 80px 0;
    background: var(--grey);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card base */
.profile-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    display: block;
    box-shadow: var(--shadow);
    transition: transform .3s, box-shadow .3s;
}

.profile-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-h); }

.profile-img-wrap {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.profile-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.profile-card:hover .profile-img-wrap img { transform: scale(1.04); }

/* Card estilo limpo (novo) */
.profile-card--clean {
    background: #fff;
    border: 1px solid var(--grey2);
}

.profile-card--clean .profile-img-wrap {
    height: 340px;
    background: #f0f0f2;
}

.profile-card--clean .profile-img-wrap img {
    object-position: top center;
}

.profile-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 20px 20px;
    background: #fff;
    border-top: 1px solid var(--grey2);
}

.profile-label-tag {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
}

.profile-label strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--black);
}

.profile-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    margin-top: 2px;
    transition: color .2s;
}

.profile-card:hover .profile-cta { color: var(--primary); }

/* Gradiente (mantido para uso legado) */
.profile-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,20,.82) 100%);
}

.profile-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    color: #fff;
}

.profile-info h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.profile-info p  { font-size: .85rem; color: rgba(255,255,255,.75); line-height: 1.5; margin-bottom: 14px; }


/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════ */
.section-how {
    padding: 80px 0;
    background: var(--white);
}

.how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.how-step {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    text-align: center;
    padding: 0 12px;
}

.how-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.how-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.how-step p {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.55;
}

.how-divider {
    width: 32px;
    height: 2px;
    background: var(--grey2);
    align-self: center;
    flex-shrink: 0;
    margin-top: -30px;
}

.how-cta {
    text-align: center;
}

.btn-primary-light {
    display: inline-flex;
    align-items: center;
    padding: 15px 38px;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: background .2s, transform .15s;
}

.btn-primary-light:hover { background: var(--primary-h); transform: translateY(-2px); }


/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.section-testimonials {
    padding: 80px 0;
    background: var(--grey);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tcard {
    background: var(--white);
    border: 1px solid var(--grey2);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow .2s;
}

.tcard:hover { box-shadow: var(--shadow-h); }

.tcard-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 1px; }

.tcard p {
    font-size: .92rem;
    color: #374151;
    line-height: 1.65;
    flex: 1;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--grey2);
}

.tcard-author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.tcard-author strong { display: block; font-size: .9rem; color: var(--black); }
.tcard-author span  { font-size: .78rem; color: var(--muted); }


/* ═══════════════════════════════════════════════════════
   HELP SECTION
═══════════════════════════════════════════════════════ */
.section-help {
    padding: 80px 0;
    background: var(--white);
}

.help-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.help-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin: 10px 0 16px;
    letter-spacing: -.3px;
}

.help-text h2 strong { font-weight: 800; }

.help-text p {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.help-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-wpp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: #22c55e;
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: .92rem;
    transition: background .2s, transform .15s;
}

.btn-wpp:hover { background: #16a34a; transform: translateY(-2px); }

.btn-help-outline {
    display: inline-flex;
    align-items: center;
    padding: 13px 24px;
    border: 1.5px solid var(--grey2);
    color: var(--text);
    border-radius: 999px;
    font-weight: 600;
    font-size: .92rem;
    transition: border-color .2s;
}

.btn-help-outline:hover { border-color: #aaa; }

.help-visual img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-h);
}


/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
    background: var(--black);
    color: rgba(255,255,255,.72);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand-logo-wrap {
    display: inline-block;
    margin-bottom: 14px;
}

.footer-brand-logo {
    height: 52px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 6px 12px;
    display: block;
}

.footer-brand-desc {
    font-size: .85rem;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
    max-width: 280px;
    margin-bottom: 22px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, opacity .2s;
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.footer-social-icon:hover { transform: translateY(-3px); opacity: .85; }

/* Instagram — gradiente oficial */
.footer-social-icon[title="Instagram"] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
}

/* YouTube — vermelho oficial */
.footer-social-icon[title="YouTube"] {
    background: #FF0000;
    color: #fff;
}

/* TikTok — preto com detalhe */
.footer-social-icon[title="TikTok"] {
    background: #010101;
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
}

.footer-col h5 {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col ul li a {
    font-size: .875rem;
    color: rgba(255,255,255,.6);
    transition: color .2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-col address {
    font-style: normal;
    font-size: .875rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: .78rem;
    color: rgba(255,255,255,.3);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    transition: color .2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }


/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(34,197,94,.5);
    transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(34,197,94,.65); }

.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }


/* ═══════════════════════════════════════════════════════
   INNER PAGES (auth, cart, checkout, dashboard, wizard)
═══════════════════════════════════════════════════════ */
.page-section {
    padding: 56px 0 80px;
    min-height: 60vh;
}

.page-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -.3px;
    margin-bottom: 6px;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 36px;
}

/* Card/Panel */
.card {
    background: var(--white);
    border: 1px solid var(--grey2);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

/* Forms */
.form-group { display: grid; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }

input, select, textarea {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--grey2);
    color: var(--text);
    border-radius: 12px;
    padding: 13px 16px;
    font-size: .92rem;
    font-family: var(--font);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}

.btn-form {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    margin-top: 6px;
}

.btn-form:hover { background: var(--primary-h); }

/* Auth */
.auth-wrap { max-width: 480px; }
.auth-link { font-size: .85rem; color: var(--muted); text-align: center; margin-top: 14px; }
.auth-link a { color: var(--primary); font-weight: 600; }
.error-msg { background: #fee2e2; border: 1px solid #fca5a5; color: #dc2626; border-radius: 10px; padding: 12px 16px; font-size: .875rem; margin-bottom: 14px; }

/* Wizard */
.wizard-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}

.wizard-sidebar {
    background: var(--white);
    border: 1px solid var(--grey2);
    border-radius: var(--r-lg);
    padding: 24px;
    position: sticky;
    top: 80px;
}

.wizard-sidebar h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 16px; }

.wizard-steps-list {
    list-style: none;
    display: grid;
    gap: 4px;
}

.wizard-steps-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: .875rem;
    color: var(--muted);
    transition: background .2s;
}

.wizard-steps-list li.active {
    background: #eff6ff;
    color: var(--primary);
    font-weight: 600;
}

.wizard-steps-list li span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--grey2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.wizard-steps-list li.active span {
    background: var(--primary);
    color: #fff;
}

.wizard-main { display: grid; gap: 20px; }

/* Cart */
.cart-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--grey2);
}

.cart-row:last-child { border-bottom: none; }

/* Dashboard */
.dashboard-wrap {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: start;
}

.order-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--grey2);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    background: #dbeafe;
    color: var(--primary);
}


/* ═══════════════════════════════════════════════════════
   EM CONSTRUÇÃO / MANUTENÇÃO
═══════════════════════════════════════════════════════ */
.construcao-wrap {
    max-width: 520px;
    margin: 60px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.construcao-icon {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 8px;
}

.construcao-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -.3px;
}

.construcao-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 8px;
}


/* ═══════════════════════════════════════════════════════
   HAMBURGER & MOBILE MENU
═══════════════════════════════════════════════════════ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    transition: background .2s;
}

.hamburger:hover { background: var(--grey); }

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 70px;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--grey2);
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    z-index: 99;
}

.mobile-menu.open { display: block; }

.mobile-nav {
    display: flex !important;
    flex-direction: column;
    padding: 12px 0 20px;
}

.mobile-nav a {
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--grey2);
    transition: background .15s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: var(--grey); }

.mobile-cta {
    margin: 12px 20px 0;
    background: var(--primary);
    color: #fff !important;
    border-radius: 12px;
    text-align: center;
    border-bottom: none !important;
}

.mobile-cta:hover { background: var(--primary-h) !important; }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

/* Touch target mínimo para botões */
.btn, .btn-cart, .btn-form,
.btn-slide-primary, .btn-slide-ghost,
.btn-primary-light, .btn-wpp, .btn-help-outline {
    min-height: 44px;
}

@media (min-width: 768px) {
    nav { display: flex; }
}

/* Tablet */
@media (max-width: 900px) {
    .profiles-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-card--clean .profile-img-wrap { height: 260px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .help-inner { grid-template-columns: 1fr; }
    .help-visual img { height: auto; max-height: 280px; }
    .wizard-wrap { grid-template-columns: 1fr; }
    .wizard-sidebar { position: static; }
    .dashboard-wrap { grid-template-columns: 1fr; }
    .trust-inner { overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch; }
    .how-steps { gap: 12px; }
    .how-divider { display: none; }
    .how-step { min-width: 120px; }
}

/* Mobile */
@media (max-width: 767px) {
    .hamburger { display: flex; }
    .nav-hide-mobile { display: none; }
    .topbar { position: sticky; }

    .nav-wrap { padding: 12px 0; gap: 12px; }
    .hero-slider { height: 440px; }
    .slide-content { padding-bottom: 72px; max-width: 100%; }
    .slide-content h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .slide-content p { font-size: .9rem; }

    .section-profiles,
    .section-how,
    .section-testimonials,
    .section-help { padding: 56px 0; }

    .profiles-grid { grid-template-columns: 1fr; }
    .profile-img-wrap { height: 280px; }
    .profile-card--clean .profile-img-wrap { height: 300px; }

    .how-step { min-width: 100px; max-width: 100%; flex: 0 0 calc(50% - 12px); }

    .testimonials-grid { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand-desc { max-width: 100%; }

    .page-title { font-size: 1.5rem; }
    .page-subtitle { font-size: .9rem; }
    .card { padding: 20px; }

    .wizard-wrap { grid-template-columns: 1fr; }
    .dashboard-wrap { grid-template-columns: 1fr; }

    .cart-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    .order-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Small mobile */
@media (max-width: 480px) {
    .trust-inner span { padding: 10px 14px; font-size: .72rem; }
    .slider-arrow { display: none; }
    .slide-content { padding-bottom: 60px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .nav-actions { gap: 6px; }
    .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
}
