/* ============================================
   GAMEMASTER PRO — CSS Principal
   Tema: Escuro Luxuoso (Ouro + Preto)
   ============================================ */

/* === VARIÁVEIS & RESET === */
:root {
    --gold: #C9A84C;
    --gold-light: #F0C040;
    --gold-dark: #9B7A2E;
    --gold-glow: rgba(201, 168, 76, 0.35);
    --black: #0A0A0A;
    --dark: #111111;
    --dark2: #181818;
    --dark3: #222222;
    --card-bg: #141414;
    --text: #E8E8E8;
    --text-muted: #888;
    --white: #ffffff;
    --green: #25D366;
    --green-dark: #128C7E;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.2);
    --font-display: 'Cinzel Decorative', serif;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Raleway', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === PARTÍCULAS === */
.particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-20px) scale(1.5); opacity: 0; }
}

/* === TEXTO DOURADO === */
.gold-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === NAVBAR === */
.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--gold);
    filter: drop-shadow(0 0 8px var(--gold));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-text em {
    font-style: normal;
    color: var(--gold);
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-nav:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
        var(--black);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(201,168,76,0.04) 79px, rgba(201,168,76,0.04) 80px),
        repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(201,168,76,0.04) 79px, rgba(201,168,76,0.04) 80px);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 40%;
    background: linear-gradient(to top, var(--black), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex: 1;
    padding: 60px 24px 80px;
    animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.badge-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s 0.1s ease both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s 0.4s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 6px 30px rgba(201, 168, 76, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after { left: 100%; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold);
    padding: 16px 36px;
    border-radius: 50px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s 0.5s ease both;
}

.stat { text-align: center; }
.stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
}
.stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 168, 76, 0.2);
}

.scroll-indicator {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding-bottom: 32px;
    animation: fadeInUp 0.8s 0.7s ease both;
}

.scroll-indicator span {
    display: block;
    width: 22px;
    height: 36px;
    border: 2px solid rgba(201, 168, 76, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDot 1.5s ease infinite;
}

@keyframes scrollDot {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* === TRUST BAR === */
.trust-bar {
    background: rgba(201, 168, 76, 0.06);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 18px 0;
    overflow: hidden;
}

.trust-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trust-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.trust-dot {
    color: rgba(201, 168, 76, 0.4);
    font-size: 0.5rem;
}

/* === SEÇÕES COMUNS === */
section { position: relative; z-index: 1; }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
}

/* === PLATAFORMAS === */
.plataformas {
    padding: 100px 0;
    background: var(--dark);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    overflow: hidden;
    animation: fadeInUp 0.6s ease both;
}

.card[data-index="1"] { animation-delay: 0.1s; }
.card[data-index="2"] { animation-delay: 0.2s; }
.card[data-index="3"] { animation-delay: 0.3s; }

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: var(--shadow-gold);
}

.card-destaque {
    border-color: rgba(201, 168, 76, 0.5);
    background: linear-gradient(160deg, #181200 0%, var(--card-bg) 60%);
    transform: scale(1.03);
}

.card-destaque:hover {
    transform: scale(1.03) translateY(-8px);
}

.card-glow {
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.card-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge-gold {
    background: rgba(201, 168, 76, 0.25);
    border-color: var(--gold);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.card-features li {
    font-size: 0.88rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.btn-card:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--gold);
}

.btn-card-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    border-color: transparent;
    font-weight: 700;
}

.btn-card-gold:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
}

/* === BENEFÍCIOS === */
.beneficios {
    padding: 100px 0;
    background: var(--black);
}

.beneficios-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.beneficios-texto p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.beneficios-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ben-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ben-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.ben-item strong {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 2px;
}

.ben-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* === MOCKUP PHONE === */
.beneficios-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-phone {
    position: relative;
    width: 240px;
    height: 460px;
    background: var(--dark3);
    border: 2px solid rgba(201, 168, 76, 0.4);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), var(--shadow-gold);
}

.phone-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.phone-screen {
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phone-header {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gold);
    text-align: center;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding-bottom: 12px;
}

.phone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
}

.phone-game { font-size: 3.5rem; }

.phone-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

.phone-bar {
    width: 80%;
    height: 8px;
    background: rgba(201,168,76,0.3);
    border-radius: 4px;
    animation: phonePulse 2s ease infinite;
}

.phone-bar.short { width: 55%; animation-delay: 0.3s; }

@keyframes phonePulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.phone-win {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: var(--green);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    animation: winPulse 2s ease infinite;
}

@keyframes winPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(37, 211, 102, 0.2); }
    50% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.5); }
}

.floating-badge {
    position: absolute;
    background: var(--dark3);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    animation: floatBadge 3s ease infinite;
}

.f1 { top: 10%; right: -10%; animation-delay: 0s; }
.f2 { bottom: 20%; right: -12%; animation-delay: 1s; }
.f3 { bottom: 10%; left: -12%; animation-delay: 0.5s; }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* === DEPOIMENTOS === */
.depoimentos {
    padding: 100px 0;
    background: var(--dark);
}

.dep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dep-card {
    background: var(--card-bg);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
}

.dep-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-4px);
}

.dep-card-gold {
    border-color: rgba(201, 168, 76, 0.4);
    background: linear-gradient(160deg, #141000 0%, var(--card-bg) 60%);
}

.dep-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.dep-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.dep-autor {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dep-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.dep-autor strong {
    display: block;
    font-size: 0.92rem;
    color: var(--white);
}

.dep-autor span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === COTAÇÃO / FORMULÁRIO === */
.cotacao {
    padding: 100px 0;
    background: var(--black);
    position: relative;
}

.cotacao::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cotacao-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cotacao-texto p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.cotacao-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* FORMULÁRIO */
.cotacao-form-wrap {
    position: relative;
}

.form-erro {
    background: rgba(255,60,60,0.1);
    border: 1px solid rgba(255,60,60,0.3);
    color: #ff6b6b;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.cotacao-form {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius);
    padding: 40px 36px;
}

.cotacao-form h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    background: var(--dark3);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group input::placeholder { color: rgba(255,255,255,0.25); }

.check-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.check-item:hover { color: var(--text); }

.check-item input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.form-obs {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 14px;
}

/* === FOOTER === */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 60px 0 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.footer-desc {
    color: var(--text-muted);
    max-width: 500px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.btn-footer-zap {
    padding: 12px 28px;
    font-size: 0.9rem;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.2);
}

/* === BOTÃO FLUTUANTE WHATSAPP === */
.fab-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
    width: 62px;
    height: 62px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    color: var(--white);
}

.fab-whatsapp:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7);
}

.fab-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: fabPulse 2s ease infinite;
}

@keyframes fabPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================
   RESPONSIVO — MOBILE FIRST
   ============================================ */

/* Tablets */
@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: 1fr 1fr; }
    .card-destaque { transform: none; }
    .card-destaque:hover { transform: translateY(-8px); }
    .beneficios-inner { grid-template-columns: 1fr; gap: 60px; }
    .beneficios-visual { display: none; }
    .cotacao-inner { grid-template-columns: 1fr; gap: 48px; }
    .dep-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar { padding: 16px 20px; }
    .logo-text { font-size: 1.1rem; }
    .btn-nav span { display: none; }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .cards-grid { grid-template-columns: 1fr; }
    .dep-grid { grid-template-columns: 1fr; }

    .cotacao-form { padding: 28px 20px; }

    .trust-inner { gap: 20px; }

    .f1, .f2, .f3 { display: none; }

    .hero-ctas { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
    .section-title { font-size: 1.6rem; }
    .hero-title { font-size: 1.9rem; }
    .card { padding: 28px 20px; }
}