/* ==========================================================================
   EssMendes Tecnologia - Modern Glassmorphic Design System
   Paleta: Midnight Navy, Cyber Cyan, Chrome Silver, Google Accent Colors
   ========================================================================== */

:root {
    --bg-primary: #040711;
    --bg-secondary: #080e1e;
    --bg-card: rgba(12, 21, 41, 0.75);
    --bg-card-hover: rgba(16, 29, 58, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    --border-subtle: rgba(0, 163, 255, 0.14);
    --border-hover: rgba(0, 163, 255, 0.4);
    --border-glow: rgba(0, 210, 255, 0.55);
    
    --brand-cyan: #00d2ff;
    --brand-cyan-deep: #0088cc;
    --brand-blue: #0052cc;
    --brand-glow: rgba(0, 210, 255, 0.28);
    
    --google-blue: #4285F4;
    --google-red: #EA4335;
    --google-yellow: #FBBC05;
    --google-green: #34A853;
    
    --gold-star: #FBBF24;
    --gold-glow: rgba(251, 191, 36, 0.3);
    --whatsapp-green: #25D366;
    --whatsapp-glow: rgba(37, 211, 102, 0.35);
    
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Global --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Ambient Mesh Glows --- */
.ambient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.35;
}

.orb-1 {
    width: 650px;
    height: 650px;
    top: -150px;
    left: 5%;
    background: radial-gradient(circle, var(--brand-cyan) 0%, rgba(0, 163, 255, 0.1) 70%, transparent 100%);
    animation: drift 18s ease-in-out infinite alternate;
}

.orb-2 {
    width: 750px;
    height: 750px;
    top: 30%;
    right: -200px;
    background: radial-gradient(circle, var(--brand-blue) 0%, rgba(0, 82, 204, 0.15) 70%, transparent 100%);
    animation: drift 22s ease-in-out infinite alternate-reverse;
}

.orb-3 {
    width: 600px;
    height: 600px;
    bottom: 12%;
    left: 15%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.25) 0%, rgba(16, 185, 129, 0.15) 70%, transparent 100%);
    animation: drift 15s ease-in-out infinite alternate;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.08); }
}

.glow-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 20%, black 40%, transparent 80%);
}

/* --- Container & Utilities --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #00d2ff 60%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-cyan {
    color: var(--brand-cyan) !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-cyan);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #0052cc 0%, #00d2ff 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 24px var(--brand-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 210, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 20px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #2ae06d 0%, #20b85a 100%);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-subtle);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-cyan);
    transform: translateY(-3px);
    color: var(--brand-cyan);
}

.btn-large {
    padding: 16px 34px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity 0.3s ease;
}

.btn-glow:hover::after {
    opacity: 0.6;
}

/* --- Top Announcement Bar --- */
.top-banner {
    background: linear-gradient(90deg, rgba(0, 82, 204, 0.25) 0%, rgba(0, 210, 255, 0.25) 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-cyan);
    font-weight: 700;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-cyan);
    animation: pulse 1.8s infinite;
}

.top-banner-text {
    color: var(--text-secondary);
}

.top-banner-link {
    color: #FFFFFF;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: var(--transition);
}

.top-banner-link:hover {
    color: var(--brand-cyan);
}

/* --- Header & Navigation --- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(4, 7, 17, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(4, 7, 17, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.header-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 163, 255, 0.2));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-link:hover, .nav-link.active {
    color: #FFFFFF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-cyan);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.header-phone:hover {
    color: var(--brand-cyan);
    border-color: var(--brand-cyan);
    background: rgba(0, 210, 255, 0.08);
}

.btn-whatsapp-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp-green);
    color: #FFFFFF;
    padding: 9px 18px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px var(--whatsapp-glow);
}

.btn-whatsapp-header:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

.pulse-subtle {
    animation: pulseSubtle 3s infinite;
}

@keyframes pulseSubtle {
    0%, 100% { box-shadow: 0 4px 14px var(--whatsapp-glow); }
    50% { box-shadow: 0 4px 22px rgba(37, 211, 102, 0.6); }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Mobile Drawer --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #060b18;
    border-left: 1px solid var(--border-subtle);
    z-index: 2000;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 16px;
}

.drawer-logo {
    height: 34px;
    width: auto;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px 0;
}

.drawer-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-link:hover {
    color: var(--brand-cyan);
}

.drawer-phone {
    text-align: center;
    margin-top: 14px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* --- Hero Section --- */
.hero {
    padding: 70px 0 90px;
    position: relative;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 50px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: var(--radius-full);
    color: var(--brand-cyan);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-cyan);
}

.hero-title {
    font-size: clamp(2.3rem, 4.2vw, 3.4rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.2px;
    margin-bottom: 22px;
}

.hero-subtitle {
    font-size: 1.18rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 34px;
}

.hero-subtitle strong {
    color: #FFFFFF;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

/* Hero Metrics Strip */
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.2;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 38px;
    background: var(--border-subtle);
}

/* Hero Media & Floating Window */
.hero-media-wrap {
    position: relative;
}

.hero-card-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.25) 0%, rgba(0, 82, 204, 0.15) 70%, transparent 100%);
    filter: blur(28px);
    z-index: 1;
    border-radius: var(--radius-lg);
}

.hero-card-window {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(14px);
    animation: floatSmooth 7s ease-in-out infinite;
}

@keyframes floatSmooth {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

/* Floating Badges */
.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(6, 11, 24, 0.92);
    border: 1px solid var(--border-hover);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
    z-index: 3;
    animation: badgeFloat 6s ease-in-out infinite alternate;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.badge-rank {
    top: -20px;
    right: -10px;
}

.badge-reviews {
    bottom: -20px;
    left: 10px;
    animation-delay: -2s;
}

.badge-whatsapp {
    bottom: 40px;
    right: -25px;
    animation-delay: -4s;
}

.badge-icon-box {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(0, 210, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.whatsapp-bg {
    background: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp-green);
}

.badge-text-box {
    display: flex;
    flex-direction: column;
}

.badge-text-box strong {
    font-size: 0.85rem;
    color: #FFFFFF;
}

.badge-text-box span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.stars-row {
    color: var(--gold-star);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* --- Flagship Section (Injeção de Avaliações / Baseado nos Criativos) --- */
.section-flagship {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 82, 204, 0.08) 50%, transparent 100%);
}

.flagship-card {
    background: radial-gradient(circle at top left, rgba(0, 163, 255, 0.12) 0%, rgba(10, 18, 36, 0.85) 100%);
    border: 1px solid var(--border-hover);
    border-radius: 28px;
    padding: 60px 48px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.flagship-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge-star {
    display: inline-block;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.35);
    color: var(--gold-star);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.flagship-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 18px;
}

.flagship-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 34px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 34px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.whatsapp-accent {
    background: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp-green);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.star-accent {
    background: rgba(251, 191, 36, 0.15);
    color: var(--gold-star);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.chart-accent {
    background: rgba(0, 210, 255, 0.15);
    color: var(--brand-cyan);
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.shield-accent {
    background: rgba(96, 165, 250, 0.15);
    color: #60A5FA;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.feature-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.flagship-highlight-bar {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.12) 0%, rgba(0, 210, 255, 0.1) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.highlight-text strong {
    display: block;
    color: var(--gold-star);
    font-size: 0.92rem;
    letter-spacing: 1px;
}

.highlight-text span {
    font-size: 0.85rem;
    color: #FFFFFF;
}

.highlight-stars {
    color: var(--gold-star);
    font-size: 1.4rem;
    letter-spacing: 3px;
    text-shadow: 0 0 12px var(--gold-glow);
}

/* Smartphone Mockup Frame */
.flagship-mockup-col {
    display: flex;
    justify-content: center;
}

.smartphone-frame {
    width: 100%;
    max-width: 360px;
    background: #000000;
    border: 8px solid #1e293b;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 163, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.phone-speaker {
    width: 60px;
    height: 4px;
    background: #334155;
    border-radius: 4px;
    margin: 10px auto 6px;
}

.phone-screen {
    background: #0B132B;
    padding: 16px;
    color: #FFFFFF;
    font-size: 0.85rem;
}

.g-header {
    margin-bottom: 12px;
}

.g-search-bar {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.g-cover-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    height: 120px;
}

.g-cover-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.g-rank-tag {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--brand-cyan);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid var(--brand-cyan);
}

.g-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.g-name {
    font-size: 1.15rem;
    font-weight: 800;
}

.g-verified {
    background: #3b82f6;
    color: #FFF;
    font-size: 0.7rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.g-rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.g-score {
    font-weight: 800;
    color: #FFFFFF;
}

.g-stars {
    color: var(--gold-star);
    letter-spacing: 2px;
}

.g-count {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.g-category {
    color: var(--text-secondary);
    font-size: 0.78rem;
    margin-bottom: 4px;
}

.g-address {
    color: var(--brand-cyan);
    font-size: 0.78rem;
    margin-bottom: 14px;
}

.g-action-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.g-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 4px;
    border-radius: 8px;
    font-size: 0.72rem;
    text-align: center;
}

.g-btn-active {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.4);
    color: var(--whatsapp-green);
    font-weight: 700;
}

/* Simulated WhatsApp Review Flow */
.simulated-chat {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px;
}

.chat-tag {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--brand-cyan);
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 8px;
}

.chat-bubble {
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.72rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.chat-out {
    background: #005c4b;
    margin-left: 20px;
    border-bottom-right-radius: 2px;
}

.chat-in {
    background: #202c33;
    margin-right: 20px;
    border-bottom-left-radius: 2px;
}

.chat-time {
    display: block;
    text-align: right;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* --- Comparison Section (Antes vs Depois) --- */
.section-comparison {
    padding: 90px 0;
}

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

.comparison-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 34px;
    backdrop-filter: blur(14px);
    transition: var(--transition);
}

.card-negative {
    border: 1px solid rgba(239, 68, 68, 0.25);
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.04) 0%, var(--bg-card) 100%);
}

.card-positive {
    border: 1px solid rgba(0, 210, 255, 0.35);
    background: linear-gradient(180deg, rgba(0, 210, 255, 0.08) 0%, var(--bg-card) 100%);
    box-shadow: 0 16px 40px rgba(0, 163, 255, 0.12);
}

.comparison-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.badge-bad {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-good {
    background: rgba(0, 210, 255, 0.15);
    color: var(--brand-cyan);
    border: 1px solid rgba(0, 210, 255, 0.35);
}

.comparison-title {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.icon-x {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
}

.icon-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 210, 255, 0.18);
    color: var(--brand-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    flex-shrink: 0;
}

.comparison-list strong {
    font-size: 1rem;
    color: #FFFFFF;
    display: block;
    margin-bottom: 2px;
}

.comparison-list p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Solutions Grid (Nossos Serviços) --- */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 38px 30px;
    backdrop-filter: blur(14px);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-cyan);
    box-shadow: 0 20px 45px rgba(0, 163, 255, 0.14);
}

.featured-border {
    border-color: rgba(251, 191, 36, 0.4);
    background: radial-gradient(circle at top, rgba(251, 191, 36, 0.08) 0%, var(--bg-card) 70%);
}

.solution-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.badge-popular {
    background: rgba(251, 191, 36, 0.15);
    color: var(--gold-star);
    border-color: rgba(251, 191, 36, 0.35);
}

.solution-icon-halo {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
}

.highlight-halo {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.35);
}

.solution-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.solution-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 22px;
    flex-grow: 1;
}

.solution-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 18px;
}

.solution-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Metodologia Section --- */
.section-metodo {
    background: linear-gradient(180deg, transparent 0%, rgba(8, 14, 30, 0.7) 100%);
}

.metodo-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.media-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-hover);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.metodo-img, .suporte-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.media-overlay-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(6, 11, 24, 0.9);
    border: 1px solid var(--border-hover);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
}

.metodo-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 14px 0 28px;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--brand-cyan);
    transform: translateX(6px);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 210, 255, 0.12);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: var(--brand-cyan);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-header h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFFFFF;
}

.step-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 52px;
}

/* --- Calculadora Interativa --- */
.section-calc {
    padding: 90px 0;
}

.calc-box {
    background: radial-gradient(circle at top, rgba(0, 210, 255, 0.12) 0%, rgba(8, 14, 30, 0.9) 100%);
    border: 1px solid var(--border-hover);
    border-radius: 28px;
    padding: 60px 48px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.input-group {
    margin-bottom: 26px;
}

.input-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.input-currency-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0 16px;
    transition: var(--transition);
}

.input-currency-wrapper:focus-within {
    border-color: var(--brand-cyan);
    box-shadow: 0 0 12px var(--brand-glow);
}

.currency-prefix {
    color: var(--brand-cyan);
    font-weight: 800;
    font-size: 1.1rem;
    margin-right: 8px;
}

.input-currency-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 12px 0;
    outline: none;
    font-family: inherit;
}

.range-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.range-wrapper input[type="range"] {
    flex-grow: 1;
    accent-color: var(--brand-cyan);
    cursor: pointer;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.range-val {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--brand-cyan);
    min-width: 130px;
    text-align: right;
}

.niche-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.niche-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.niche-btn:hover, .niche-btn.active {
    background: rgba(0, 210, 255, 0.15);
    border-color: var(--brand-cyan);
    color: #FFFFFF;
}

/* Calc Results Panel */
.calc-results {
    background: rgba(6, 11, 24, 0.85);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.result-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--brand-cyan);
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.result-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

.res-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.res-num {
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFFFFF;
    text-align: right;
}

.result-total {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1) 0%, rgba(0, 82, 204, 0.15) 100%);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    margin: 24px 0 22px;
}

.total-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.total-num {
    font-size: 2rem;
    font-weight: 900;
    color: #FFFFFF;
    background: linear-gradient(135deg, #FFFFFF 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 4px;
}

.total-sub {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* --- Suporte Section --- */
.section-suporte {
    padding: 90px 0;
}

.suporte-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.suporte-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 16px 0 30px;
}

.suporte-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 34px;
}

.suporte-card-item {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 18px 22px;
    border-radius: var(--radius-md);
}

.item-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.suporte-card-item strong {
    font-size: 1.05rem;
    color: #FFFFFF;
    display: block;
    margin-bottom: 4px;
}

.suporte-card-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Reviews / Depoimentos --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-cyan);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-stars {
    color: var(--gold-star);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.google-badge {
    font-size: 0.72rem;
    color: var(--google-blue);
    background: rgba(66, 133, 244, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.review-quote {
    font-size: 0.98rem;
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-subtle);
    padding-top: 16px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
    color: #FFFFFF;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.author-info strong {
    font-size: 0.95rem;
    color: #FFFFFF;
    display: block;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* --- FAQ Accordion --- */
.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--brand-cyan);
    box-shadow: 0 8px 24px rgba(0, 163, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    gap: 16px;
}

.faq-toggle-icon {
    font-size: 1.5rem;
    color: var(--brand-cyan);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 26px 22px;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.7;
}

/* --- CTA Section --- */
.section-cta {
    padding: 100px 0;
}

.cta-box {
    background: radial-gradient(circle at top, rgba(0, 210, 255, 0.18) 0%, rgba(8, 14, 30, 0.95) 100%);
    border: 1px solid var(--border-hover);
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    max-width: 960px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.2rem, 3.8vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.contact-channels {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.contact-pill:hover {
    background: rgba(0, 210, 255, 0.12);
    border-color: var(--brand-cyan);
    color: var(--brand-cyan);
    transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
    background: rgba(3, 6, 15, 0.95);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.brand-col .footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 18px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-badge {
    font-size: 0.75rem;
    color: var(--brand-cyan);
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid var(--border-subtle);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 700;
}

.footer-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links a:hover {
    color: var(--brand-cyan);
    padding-left: 4px;
}

.footer-contact-item {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-wa-link {
    display: inline-block;
    color: var(--whatsapp-green);
    font-weight: 700;
    text-decoration: none;
    margin-top: 8px;
    font-size: 0.92rem;
}

.footer-wa-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Floating WhatsApp Widget --- */
.floating-whatsapp-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.wa-bubble-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.wa-bubble-btn:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.7);
}

.wa-notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #EF4444;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-primary);
}

.wa-tooltip {
    background: #080f24;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-md);
    padding: 16px;
    width: 280px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    margin-bottom: 14px;
    position: relative;
    backdrop-filter: blur(16px);
    animation: tooltipFade 0.4s ease;
}

@keyframes tooltipFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tooltip-close {
    position: absolute;
    top: 8px;
    right: 12px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
}

.tooltip-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.tooltip-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.tooltip-header strong {
    font-size: 0.85rem;
    color: #FFFFFF;
    display: block;
}

.tooltip-status {
    font-size: 0.72rem;
    color: var(--whatsapp-green);
    display: block;
}

.tooltip-msg {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.tooltip-btn {
    display: block;
    text-align: center;
    background: var(--whatsapp-green);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.tooltip-btn:hover {
    background: #20ba5a;
}

/* --- Responsividade & Breakpoints --- */
@media (max-width: 1100px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }

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

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

    .metodo-layout {
        grid-template-columns: 1fr;
    }

    .suporte-layout {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 900px) {
    .nav-menu, .header-phone {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .flagship-card {
        padding: 40px 24px;
    }

    .calc-box {
        padding: 40px 24px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 70px 0;
    }

    .hero {
        padding: 50px 0 60px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .badge-rank, .badge-reviews, .badge-whatsapp {
        position: static;
        margin-top: 10px;
        animation: none;
    }

    .hero-card-window {
        padding: 8px;
    }

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

    .contact-channels {
        flex-direction: column;
    }

    .contact-pill {
        width: 100%;
        justify-content: center;
    }

    .top-banner-container {
        font-size: 0.78rem;
    }

    .flagship-highlight-bar {
        flex-direction: column;
        text-align: center;
    }
}