/* ============================================================
   POCKETMALL v2.3 — Visual: iFood da Beleza
   Rosa vibrante #E07A8A | Dourado #D4AF37 | Fundo #F8F8F5
   ============================================================ */

:root {
    --primary: #E07A8A;
    --primary-dark: #C85F70;
    --primary-light: #FADCE0;
    --gold: #D4AF37;
    --gold-light: #F5E6A3;
    --gold-dark: #B8962E;
    --secondary: #D4AF37;
    --bg: #F8F8F5;
    --white: #FFFFFF;
    --text: #2D2D2D;
    --text-dark: #1a1a1a;
    --text-light: #6B6B6B;
    --text-muted: #9E9E9E;
    --border: #E8E4DF;
    --border-light: #F2EFEA;
    --success: #22C55E;
    --danger: #EF4444;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 12px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   HEADER — Estilo iFood (limpo, logo + nav + botao)
   ============================================================ */
.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg { width: 22px; height: 22px; }

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}

.logo-highlight { color: var(--primary); }

.logo-sub {
    font-size: 9px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    line-height: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.main-nav a:hover { color: var(--primary); }

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.main-nav a:hover::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-pill);
    transition: all 0.2s;
}

.btn-login:hover { background: var(--primary-light); }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(224,122,138,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224,122,138,0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    background: white;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 2px solid var(--border);
    transition: all 0.2s;
    cursor: pointer;
    font-family: inherit;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* ============================================================
   HERO — FONDO CLARO IGUAL A PAGINA DE PRODUTOS
   ============================================================ */
.hero {
    padding: 80px 0 60px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-badge .badge-intl {
    background: var(--primary);
    color: white;
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    font-size: 10px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-desc em { color: var(--text-muted); font-size: 15px; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero-stat h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat p {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.hero-stat small { font-size: 12px; color: var(--text-muted); font-weight: 400; }

/* Hero Visual / Phone Mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }

.hero-phone {
    width: 280px;
    background: var(--text-dark);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
}

.phone-screen {
    background: var(--bg);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    min-height: 480px;
}

.phone-notch {
    width: 120px;
    height: 24px;
    background: var(--text-dark);
    border-radius: 0 0 20px 20px;
    margin: 0 auto;
}

.phone-content { padding: 16px; }

.phone-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.phone-logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.phone-title { font-weight: 700; font-size: 14px; color: var(--text-dark); }

.phone-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
}

.phone-card-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.phone-card-img.pink { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.phone-card-img.gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.phone-card-img.coral { background: linear-gradient(135deg, #FADCE0, var(--primary)); }
.phone-card-img.green { background: linear-gradient(135deg, #86efac, var(--success)); }

.phone-card-info h4 { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.phone-card-info p { font-size: 11px; color: var(--text-light); }
.phone-card-arrow { color: var(--text-muted); font-size: 12px; margin-left: auto; }

/* Float badges */
.float-badge {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.float-badge.fb-1 { top: 20px; right: -20px; }
.float-badge.fb-2 { bottom: 80px; left: -40px; }
.float-badge.fb-3 { bottom: 20px; right: -10px; }

.icon-pink { color: var(--primary); font-size: 18px; }
.icon-gold { color: var(--gold); font-size: 18px; }
.icon-green { color: var(--success); font-size: 18px; }

/* ============================================================
   STATS GRANDES — Estilo iFood
   ============================================================ */
.big-stats-section {
    padding: 60px 0;
    background: var(--white);
}

.big-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.big-stat-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.big-stat-number.pink { color: var(--primary); }
.big-stat-number.gold { color: var(--gold); }
.big-stat-number.red { color: var(--primary-dark); }

.big-stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 56px; }

.section-label {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { padding: 80px 0; }

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual { position: relative; }

.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-badge.badge-top { top: 20px; right: -20px; }
.about-badge.badge-bottom { bottom: 20px; left: -20px; }

.badge-green { color: var(--success); font-size: 24px; }
.badge-pink { color: var(--primary); font-size: 24px; }

.about-badge-text strong { display: block; font-size: 14px; color: var(--text-dark); }
.about-badge-text span { font-size: 12px; color: var(--text-light); }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-stat {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    text-align: center;
}

.about-stat i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.about-stat h4 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.about-stat p { font-size: 13px; color: var(--text-light); }

.about-btn { margin-top: 24px; }

/* ============================================================
   CATEGORIAS
   ============================================================ */
.categories-section { padding: 80px 0; background: var(--white); }

.categories-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}

.categories-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar { display: none; }

.categories-scroll .category-card {
    flex-shrink: 0;
    width: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
}

.categories-scroll .category-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.category-overlay .category-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 10px;
}

.category-overlay h3 { font-size: 16px; font-weight: 700; }
.category-overlay p { font-size: 12px; opacity: 0.9; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.differentials-section { padding: 80px 0; }

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.diff-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.diff-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.diff-icon.pink { background: var(--primary-light); color: var(--primary); }
.diff-icon.gold { background: var(--gold-light); color: var(--gold-dark); }
.diff-icon.blue { background: #E0F2FE; color: #0369A1; }
.diff-icon.green { background: #DCFCE7; color: #166534; }
.diff-icon.purple { background: #F3E8FF; color: #7C3AED; }
.diff-icon.orange { background: #FEF3C7; color: #D97706; }
.diff-icon.teal { background: #CCFBF1; color: #0F766E; }
.diff-icon.yellow { background: #FEF9C3; color: #A16207; }
.diff-icon.cyan { background: #CFFAFE; color: #0E7490; }

.diff-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.diff-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   SEGMENTS
   ============================================================ */
.segments-section { padding: 80px 0; background: var(--white); }

.segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.segment-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    position: relative;
}

.segment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.segment-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
}

.segment-card.featured h3,
.segment-card.featured p { color: white; }

.segment-card.featured .btn-secondary {
    background: white;
    color: var(--primary);
    border-color: white;
}

.segment-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.segment-icon.cyan { background: #CFFAFE; color: #0E7490; }
.segment-icon.orange { background: #FEF3C7; color: #D97706; }
.segment-icon.purple { background: #F3E8FF; color: #7C3AED; }

.segment-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.segment-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }

.segment-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.segment-link:hover { gap: 10px; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section { padding: 80px 0; }

.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.product-filters { display: flex; gap: 8px; flex-wrap: wrap; }

.filter-btn {
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--border);
    background: white;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.product-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.product-image img { width: 100%; height: 100%; object-fit: cover; }

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
}

.product-badge.badge-dark {
    left: auto;
    right: 48px;
    background: var(--text-dark);
}

.product-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: var(--text-muted);
}

.product-fav:hover { color: var(--danger); }

.product-info { padding: 20px; }

.product-brand {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.product-rating {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 12px;
}

.product-rating span { color: var(--text-muted); margin-left: 6px; }

.product-price { margin-top: 8px; }

.price-current { font-size: 20px; font-weight: 800; color: var(--primary); }

.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    margin-left: 8px;
}

.price-installment {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.btn-add {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-add:hover { transform: scale(1.1); }

/* ============================================================
   APP SECTION
   ============================================================ */
.app-section { padding: 80px 0; }

.app-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-section h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.app-section h2 span { color: var(--primary); }

.app-section p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.app-features-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    font-weight: 600;
}

.app-feature-item i { color: var(--primary); }

.app-stores { display: flex; gap: 12px; flex-wrap: wrap; }

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--text-dark);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
}

.app-store-btn:hover { background: var(--primary); }

.app-store-btn i { font-size: 24px; }
.app-store-btn small { font-size: 10px; opacity: 0.7; display: block; font-weight: 400; }

.app-visual { position: relative; display: flex; justify-content: center; }

.app-phone-mockup { width: 240px; }

.app-notifications {
    position: absolute;
    right: 0;
    top: 20%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-notif {
    background: white;
    padding: 14px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    max-width: 220px;
}

.app-notif i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DCFCE7;
    color: var(--success);
    font-size: 16px;
    flex-shrink: 0;
}

.app-notif strong { display: block; font-size: 13px; }
.app-notif span { font-size: 11px; color: var(--text-light); }

.app-qr {
    position: absolute;
    left: 0;
    bottom: 10%;
    text-align: center;
}

.app-qr-box {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    margin: 0 auto 8px;
    font-size: 40px;
    color: var(--text-dark);
}

.app-qr p { font-size: 11px; color: var(--text-light); line-height: 1.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 80px 0; background: var(--white); }

.testimonials-slider { max-width: 600px; margin: 0 auto; position: relative; }

.testimonial-slide { text-align: center; padding: 20px; }

.testimonial-quote { color: var(--primary); font-size: 32px; margin-bottom: 16px; }

.testimonial-rating { color: var(--gold); font-size: 16px; margin-bottom: 20px; }

.testimonial-text {
    font-size: 18px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info { text-align: left; }

.testimonial-author-info strong { display: block; font-size: 16px; color: var(--text-dark); }
.testimonial-author-info span { font-size: 13px; color: var(--text-light); }

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.testimonial-prev, .testimonial-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.testimonial-prev:hover, .testimonial-next:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.testimonial-dots { display: flex; gap: 8px; }

.testimonial-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.2s;
}

.testimonial-dots span.active { background: var(--primary); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-section { padding: 80px 0; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.blog-card img { width: 100%; height: 200px; object-fit: cover; display: block; }

.blog-card-content { padding: 24px; }

.blog-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }

.blog-card-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.blog-card-content p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   PARCEIROS
   ============================================================ */
.partners-section { padding: 60px 0; background: linear-gradient(135deg, var(--bg) 0%, #fff 100%); overflow: hidden; }

.partners-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.partners-scroll::-webkit-scrollbar { display: none; }

.partner-logo {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ============================================================
   DOWNLOAD APP
   ============================================================ */
.download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.download-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
}

.download-section p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 24px auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.newsletter-form .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: none;
}

.newsletter-form .btn-primary:hover { background: var(--primary-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-icon { background: var(--primary); }
.footer-brand .logo-text { color: white; }

.footer-brand p {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 16px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social a:hover { background: var(--primary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    opacity: 0.5;
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.page-hero h1 span { color: var(--primary); }

.page-hero p { font-size: 16px; color: var(--text-light); }

.page-content { padding: 60px 0; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
}

/* ============================================================
   TOAST
   ============================================================ */
#toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 14px 24px;
    border-radius: var(--radius);
    color: white;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease;
    max-width: 320px;
}

.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.info { background: #3B82F6; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ============================================================
   CART
   ============================================================ */
.cart-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .about-section .container { grid-template-columns: 1fr; }
    .about-visual { order: -1; }
    .app-section .container { grid-template-columns: 1fr; }
    .app-visual { display: none; }
    .big-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-header { flex-direction: column; align-items: flex-start; }
    .products-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
        z-index: 999;
    }
    .main-nav.active { display: flex; }
    .hero-stats { gap: 20px; }
    .hero-stat h3 { font-size: 28px; }
    .big-stats-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .newsletter-form { flex-direction: column; }
    .header-actions .btn-login { display: none; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .about-stats { grid-template-columns: 1fr; }
    .hero { padding: 50px 0 40px; }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Canvas particles */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}