/* 
   EletroMove Premium Landing Page
   Theme: Dark / Premium
   Primary Background: #121212
   Accent: #FF5722 (Orange)
   WhatsApp: #22C55E (Green)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800;900&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
    --bg-main: #121212;
    --bg-sec: #1a1a1a;
    --bg-ter: #242424;
    --accent: #FF5722;
    --accent-glow: rgba(255, 87, 34, 0.15);
    --accent-glow-strong: rgba(255, 87, 34, 0.35);
    --accent-hover: #E64A19;
    --whatsapp: #22C55E;
    --whatsapp-hover: #16A34A;
    --whatsapp-glow: rgba(34, 197, 94, 0.25);
    --text-primary: #FFFFFF;
    --text-secondary: #A3A3A3;
    --text-muted: #666666;
    --red-destaque: #EF4444;
    --red-glow: rgba(239, 68, 68, 0.2);
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(26, 26, 26, 0.7);
    --glass-border: rgba(255, 255, 255, 0.06);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
}

/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-ter);
    border: 2px solid var(--bg-main);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* --- REUSABLE UTILITIES & COMPONENTS --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 7rem 0;
}

.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-text {
    color: var(--accent);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 87, 34, 0.1);
    border: 1px solid rgba(255, 87, 34, 0.2);
    color: var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.badge i {
    font-size: 0.95rem;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 2.2rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: #FFFFFF;
    box-shadow: 0 8px 30px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

.btn-accent {
    background-color: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 8px 30px var(--accent-glow-strong);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 87, 34, 0.4);
}

.btn-pulse {
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px var(--accent-glow-strong);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 40px rgba(255, 87, 34, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px var(--accent-glow-strong);
    }
}

.btn-whatsapp-pulse {
    animation: whatsappPulseGlow 2.5s infinite ease-in-out;
}

@keyframes whatsappPulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px var(--whatsapp-glow);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px var(--whatsapp-glow);
    }
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo img {
    height: 38px;
}

.logo-subtext {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--text-secondary);
    margin-top: 2px;
    margin-left: 2px;
}

nav ul {
    display: flex;
    gap: 2.2rem;
}

nav a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

nav a:hover {
    color: #FFFFFF;
}

nav a:hover::after {
    width: 100%;
}

.header-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    border-radius: 8px;
}

/* --- MOBILE MENU --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding: 10rem 0 7rem 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 87, 34, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(255, 87, 34, 0.03) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.2rem;
    font-weight: 400;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.hero-highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 87, 34, 0.04);
    border: 1px solid rgba(255, 87, 34, 0.12);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
    cursor: default;
}

.hero-highlight-pill i {
    color: var(--accent);
    font-size: 0.95rem;
}

.hero-highlight-pill:hover {
    background: rgba(255, 87, 34, 0.08);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.15);
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.micro-copy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.micro-copy i {
    color: var(--accent);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    animation: floatScooter 6s ease-in-out infinite;
}

@keyframes floatScooter {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hero-image-wrapper img {
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

/* Float Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    animation: floatBadge 4s ease-in-out infinite;
}

.fb-1 {
    top: 15%;
    left: -5%;
    animation-delay: 0.5s;
    border-left: 3px solid var(--accent);
}

.fb-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 1.5s;
    border-left: 3px solid var(--whatsapp);
}

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.fb-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 87, 34, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.fb-2 .fb-icon {
    background: rgba(34, 197, 94, 0.1);
    color: var(--whatsapp);
}

.fb-text {
    display: flex;
    flex-direction: column;
}

.fb-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
}

.fb-value {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
}

/* --- PAIN SECTION (SEÇÃO DE DOR) --- */
.pain {
    background: var(--bg-sec);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.pain-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.pain-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.pain-closing {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    font-weight: 500;
    font-size: 1.05rem;
}

.pain-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pain-card {
    background: var(--bg-ter);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    gap: 1.2rem;
    transition: var(--transition);
}

.pain-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 8px 30px var(--red-glow);
    transform: translateX(5px);
}

.pain-icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.1);
    color: var(--red-destaque);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pain-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.pain-card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- SOLUTION SECTION --- */
.solution {
    position: relative;
    background: linear-gradient(180deg, var(--bg-main) 0%, #0a0a0a 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4.5rem auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 900;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
}

.solution-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, var(--accent-glow) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.solution-card:hover {
    border-color: rgba(255, 87, 34, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 87, 34, 0.05);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 87, 34, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    border: 1px solid rgba(255, 87, 34, 0.15);
}

.solution-card:hover .solution-icon-box {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 5px 15px var(--accent-glow-strong);
    transform: rotate(5deg) scale(1.05);
}

.solution-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.solution-card-text {
    color: var(--text-secondary);
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* --- SOCIAL PROOF & GALLERY --- */
.social-proof {
    background: var(--bg-sec);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.counter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.counter-number {
    font-size: 2.2rem;
    color: var(--accent);
    font-weight: 900;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gi-1 { grid-column: span 7; }
.gi-2 { grid-column: span 5; }

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem;
}

.gallery-overlay-tag {
    align-self: flex-start;
    background: var(--accent);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.gallery-overlay-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
}

/* PREMIUM RED BADGE/LABEL (LAÇO VERMELHO) */
.premium-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--red-destaque);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 2.8rem;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

/* Testimonial card style */
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-ter);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    text-align: center;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    color: #FBBF24;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
    color: #F3F4F6;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: var(--bg-sec);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- AUTHORITY & STORE SECTION --- */
.authority {
    position: relative;
    background: var(--bg-main);
}

.authority-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.authority-content {
    display: flex;
    flex-direction: column;
}

.authority-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.authority-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.2rem;
}

.store-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.highlight-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.authority-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}

.authority-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
    height: 420px;
}

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

.authority-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ab-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 87, 34, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.ab-info {
    display: flex;
    flex-direction: column;
}

.ab-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.ab-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* --- OFFER SECTION --- */
.offer {
    background: radial-gradient(circle at 50% 50%, rgba(255, 87, 34, 0.08) 0%, transparent 60%),
                var(--bg-sec);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.offer-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 2px solid var(--border-color);
    border-radius: 28px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.offer-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.offer-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.offer-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* COUNTDOWN TIMER */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 85px;
}

.timer-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: inset 0 2px 10px rgba(255,255,255,0.02);
    color: var(--accent);
}

.timer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 0.6rem;
}

.offer-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.offer-bullet {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.offer-bullet i {
    color: var(--whatsapp);
    font-size: 1.25rem;
}

.offer-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.offer-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #F87171;
    font-weight: 500;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    max-width: 500px;
}

/* --- FAQ SECTION --- */
.faq {
    background: linear-gradient(180deg, #0a0a0a 0%, var(--bg-main) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--bg-sec);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-color);
    background: var(--bg-ter);
}

.faq-item.active {
    border-color: rgba(255, 87, 34, 0.3);
}

.faq-header-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 1.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #FFFFFF;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-icon-indicator {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 0.9rem;
}

.faq-item.active .faq-icon-indicator {
    background: var(--accent);
    color: #FFFFFF;
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer {
    padding: 0 2rem 1.6rem 2rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- FOOTER --- */
footer {
    background: #090909;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FFFFFF;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-info-item i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.trust-badge i {
    color: var(--accent);
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--text-secondary);
}

/* --- RESPONSIBILITY BREAKPOINTS --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-grid, .pain-grid, .authority-grid {
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-sec);
        z-index: 999;
        display: flex;
        flex-direction: column;
        padding: 6rem 2rem 2rem 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        transition: var(--transition);
        border-left: 1px solid var(--border-color);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    nav a {
        font-size: 1.1rem;
    }
    
    header .header-btn {
        display: none;
    }
    
    .hero {
        padding: 8rem 0 4rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-cta-wrapper {
        align-items: center;
    }
    
    .hero-highlights {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .hero-visual {
        margin-top: 1rem;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .floating-badge {
        padding: 0.6rem 1rem;
    }
    
    .fb-1 {
        left: -10px;
        top: 5%;
    }
    
    .fb-2 {
        right: -10px;
        bottom: 10%;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .pain-title {
        font-size: 2.2rem;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-title {
        font-size: 2.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gi-1, .gi-2 {
        grid-column: span 12;
    }
    
    .gallery-item {
        height: 280px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .authority-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .authority-title {
        font-size: 2.2rem;
    }
    
    .authority-visual {
        height: 300px;
    }
    
    .offer-box {
        padding: 3rem 1.5rem;
    }
    
    .offer-title {
        font-size: 1.8rem;
    }
    
    .countdown-timer {
        gap: 0.8rem;
    }
    
    .timer-unit {
        min-width: 70px;
    }
    
    .timer-number {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
        border-radius: 12px;
    }
    
    .offer-bullet {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .pain-card {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .store-highlights {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
