/* =========================================================
   GoBorder Vistos - Estilo principal
   Paleta: Azul escuro (#0A3D91) + Vermelho (#D71920) + Branco + Cinza
   ========================================================= */

:root {
    --navy: #0A3D91;
    --navy-dark: #062a66;
    --navy-light: #1E56B0;
    --red: #D71920;
    --red-dark: #a81219;
    --gold: #D4AF37;
    --gray-50: #f7f8fa;
    --gray-100: #eef1f6;
    --gray-200: #dfe4ec;
    --gray-600: #5b6472;
    --gray-800: #232a35;
    --ink: #0f1720;
    --white: #ffffff;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 4px 14px rgba(10, 61, 145, 0.08);
    --shadow-md: 0 12px 32px rgba(10, 61, 145, 0.14);
    --shadow-lg: 0 24px 60px rgba(10, 61, 145, 0.18);
    --transition: all .3s cubic-bezier(.4,0,.2,1);
    --bg: var(--white);
    --bg-alt: var(--gray-50);
    --text: var(--ink);
    --text-muted: var(--gray-600);
    --card-bg: var(--white);
    --border: var(--gray-200);
}

[data-theme="dark"] {
    --bg: #0b1220;
    --bg-alt: #0f1829;
    --text: #eef1f6;
    --text-muted: #a9b3c4;
    --card-bg: #131d30;
    --border: #223050;
    --shadow-sm: 0 4px 14px rgba(0,0,0,.35);
    --shadow-md: 0 12px 32px rgba(0,0,0,.4);
    --shadow-lg: 0 24px 60px rgba(0,0,0,.5);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    transition: background .4s ease, color .4s ease;
}

h1, h2, h3, h4, .brand-text {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

a { text-decoration: none; }

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--navy);
    color: #fff;
    padding: 10px 16px;
    z-index: 3000;
    border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ===== Loader ===== */
#loader {
    position: fixed; inset: 0; z-index: 9999;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}
#loader.loaded { opacity: 0; visibility: hidden; }
.loader-inner { color: #fff; font-size: 2.5rem; animation: floaty 1.4s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }

/* ===== Header ===== */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
[data-theme="dark"] .site-header { background: rgba(11,18,32,0.85); }

.navbar-brand {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800; font-size: 1.25rem;
    color: var(--navy) !important;
}
[data-theme="dark"] .navbar-brand { color: #fff !important; }
.brand-icon, .navbar-brand i { color: var(--red); font-size: 1.4rem; }
.brand-logo { height: 42px; width: auto; object-fit: contain; }

.navbar-toggler { border-color: rgba(10,61,145,.25); }
[data-theme="dark"] .navbar-toggler { border-color: rgba(255,255,255,.35); }
[data-theme="dark"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    font-weight: 600; color: var(--text) !important;
    position: relative; padding: 8px 14px !important;
}
.nav-link::after {
    content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
    background: var(--red); transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.nav-link:hover::after { transform: scaleX(1); }

.btn-icon-toggle {
    border: 1px solid var(--border); background: transparent; color: var(--text);
    width: 40px; height: 40px; border-radius: 50%; display: inline-flex;
    align-items: center; justify-content: center; transition: var(--transition);
}
.btn-icon-toggle:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.btn-cta-nav {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff !important; font-weight: 700; padding: 10px 20px; border-radius: 999px;
    box-shadow: 0 8px 20px rgba(215,25,32,.35); display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.btn-cta-nav:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(215,25,32,.45); }

/* ===== Buttons ===== */
.btn-cta {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff; font-weight: 700; padding: 14px 30px; border-radius: 999px; border: none;
    display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 10px 26px rgba(215,25,32,.35);
    transition: var(--transition);
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(215,25,32,.45); color: #fff; }

.btn-cta-outline {
    border: 2px solid var(--navy); color: var(--navy); font-weight: 700; padding: 12px 28px;
    border-radius: 999px; display: inline-flex; align-items: center; gap: 10px; transition: var(--transition);
    background: transparent;
}
.btn-cta-outline:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.btn-cta-outline-dark { border-color: var(--ink); color: var(--ink); }

.btn-cta-sm {
    background: var(--red); color: #fff; border: none; padding: 8px 18px; border-radius: 999px; font-weight: 700;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 28px 0; }

/* ===== Hero ===== */
.hero-section {
    position: relative;
    padding: 150px 0 60px;
    background: radial-gradient(circle at 15% 20%, rgba(10,61,145,.06), transparent 45%),
                radial-gradient(circle at 90% 10%, rgba(215,25,32,.06), transparent 40%),
                var(--bg);
    overflow: hidden;
}
.hero-bg-shapes {
    position: absolute; inset: 0; z-index: 0;
    background-image:
        linear-gradient(120deg, rgba(10,61,145,.05) 1px, transparent 1px),
        linear-gradient(rgba(10,61,145,.05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 30% 20%, black, transparent 60%);
}
.hero-section .container { position: relative; z-index: 1; }

.badge-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(10,61,145,.08); color: var(--navy); font-weight: 700; font-size: .8rem;
    padding: 8px 16px; border-radius: 999px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .04em;
}
.badge-eyebrow-light { background: rgba(255,255,255,.15); color: #fff; }

.hero-title { font-size: clamp(2.2rem, 4.4vw, 3.4rem); line-height: 1.12; margin-bottom: 18px; }
.text-accent { color: var(--red); }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); max-width: 560px; }

.hero-mini-trust { display: flex; align-items: center; gap: 16px; margin-top: 10px; }
.avatars-stack { display: flex; }
.avatars-stack span {
    width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700;
    border: 2px solid var(--bg); margin-left: -12px; box-shadow: var(--shadow-sm);
}
.avatars-stack span:first-child { margin-left: 0; }
.avatars-stack span:last-child { background: var(--red); }
.stars-sm i { color: var(--gold); font-size: .8rem; }
.hero-mini-trust small { color: var(--text-muted); }

.hero-media { position: relative; }
.hero-image-wrap {
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
    border: 6px solid var(--card-bg);
}
.hero-image { width: 100%; height: 420px; object-fit: cover; }

.phone-mockup {
    position: absolute; bottom: -30px; left: -20px; width: 230px;
    background: #111827; border-radius: 32px; padding: 10px; box-shadow: var(--shadow-lg);
    border: 3px solid #1f2937;
}
.phone-notch { width: 60px; height: 6px; background: #374151; border-radius: 999px; margin: 4px auto 8px; }
.phone-screen { background: #e9edf3; border-radius: 22px; overflow: hidden; min-height: 260px; }
.wa-header {
    background: var(--navy); color: #fff; padding: 10px 12px; display: flex; align-items: center; gap: 8px; font-size: .7rem;
}
.wa-header i.fa-user-circle { font-size: 1.4rem; }
.wa-header strong { display: block; font-size: .72rem; }
.wa-header small { opacity: .8; font-size: .6rem; }
.wa-icon { margin-left: auto; color: #25D366; }
.wa-body { padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.wa-bubble { font-size: .65rem; padding: 8px 10px; border-radius: 12px; max-width: 85%; line-height: 1.35; box-shadow: 0 2px 4px rgba(0,0,0,.08); color: #1f2430; }
.wa-in { background: #fff; align-self: flex-start; border-bottom-left-radius: 2px; }
.wa-out { background: #DCF8C6; align-self: flex-end; border-bottom-right-radius: 2px; }
.wa-typing { align-self: flex-start; display: flex; gap: 3px; background: #fff; padding: 8px 10px; border-radius: 12px; }
.wa-typing span { width: 5px; height: 5px; border-radius: 50%; background: #9aa0a6; animation: blink 1.2s infinite ease-in-out; }
.wa-typing span:nth-child(2) { animation-delay: .2s; }
.wa-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,80%,100%{ opacity:.25; } 40%{ opacity:1; } }

.trust-bar {
    margin-top: 60px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px;
    background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 22px 30px; box-shadow: var(--shadow-sm);
}
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--text); }
.trust-item i { color: var(--red); font-size: 1.1rem; }

/* ===== Sections ===== */
.section-block { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-heading { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.section-heading h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
.section-heading p { color: var(--text-muted); font-size: 1.05rem; }

/* ===== Como funciona ===== */
.step-card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 34px 26px; height: 100%; position: relative; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--navy-light); }
.step-number {
    position: absolute; top: 20px; right: 24px; font-size: 2.4rem; font-weight: 800;
    color: var(--gray-100); font-family: 'Poppins', sans-serif;
}
[data-theme="dark"] .step-number { color: rgba(255,255,255,.06); }
.step-icon {
    width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: .94rem; margin: 0; }

/* ===== Feature cards (por que escolher) ===== */
.feature-card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 30px; height: 100%; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
    width: 54px; height: 54px; border-radius: 50%; background: rgba(215,25,32,.1); color: var(--red);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: .94rem; margin: 0; }

/* ===== Simulador ===== */
.simulador-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy) 55%, var(--navy-light));
    position: relative; overflow: hidden;
}
.simulador-section::before {
    content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: rgba(215,25,32,.18); top: -200px; right: -150px; filter: blur(10px);
}
.text-white-75 { color: rgba(255,255,255,.8); }
.simulador-bullets { list-style: none; padding: 0; margin: 24px 0 0; }
.simulador-bullets li { color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.simulador-bullets i { color: #4ADE80; }

.simulador-card {
    background: var(--card-bg); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg);
    position: relative; z-index: 1;
}
.simulador-card .form-label { font-weight: 600; font-size: .88rem; color: var(--text); }
.simulador-card .form-control, .simulador-card .form-select {
    border-radius: var(--radius-sm); border: 1.5px solid var(--border); padding: 11px 14px; background: var(--bg);
    color: var(--text);
}
.simulador-card .form-control:focus, .simulador-card .form-select:focus {
    border-color: var(--navy); box-shadow: 0 0 0 4px rgba(10,61,145,.12);
}
.simulador-privacy { text-align: center; margin: 14px 0 0; font-size: .8rem; color: var(--text-muted); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ===== Tipos de visto ===== */
.visa-card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px; height: 100%; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column;
}
.visa-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--red); }
.visa-icon {
    width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 18px;
}
.visa-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.visa-card p { color: var(--text-muted); font-size: .92rem; flex-grow: 1; }
.visa-link { color: var(--navy); font-weight: 700; margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); }
.visa-link:hover { gap: 12px; color: var(--red); }

/* ===== Depoimentos ===== */
.testimonial-carousel { position: relative; }
.testimonial-track {
    display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px;
    scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 30px; min-width: 320px; max-width: 320px; scroll-snap-align: start; box-shadow: var(--shadow-sm);
}
.testimonial-stars i { color: var(--gold); font-size: .85rem; }
.testimonial-text { margin: 14px 0 20px; color: var(--text); font-size: .96rem; min-height: 90px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-author small { color: var(--text-muted); }
.testimonial-controls { display: flex; justify-content: center; gap: 14px; margin-top: 24px; }
.testimonial-btn {
    width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--card-bg);
    color: var(--navy); transition: var(--transition);
}
.testimonial-btn:hover { background: var(--navy); color: #fff; }

/* ===== Estatisticas ===== */
.stats-section { background: linear-gradient(135deg, var(--ink), #16233d); padding: 80px 0; color: #fff; }
.stat-number { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 800; color: #fff; display: inline; }
.stat-suffix { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--red); display: inline; }
.stat-suffix-lg { font-size: 1.8rem; display: block; margin-top: 6px; }
.stat-icon { font-size: 2rem; color: var(--red); margin-bottom: 8px; }
.stats-section p { color: rgba(255,255,255,.7); margin-top: 6px; }

/* ===== FAQ (accordion) ===== */
.accordion-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-md) !important; margin-bottom: 14px; overflow: hidden; }
.accordion-button {
    font-weight: 700; color: var(--text); background: var(--card-bg); padding: 20px 24px;
}
.accordion-button:not(.collapsed) { color: var(--navy); background: var(--card-bg); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--border); }
.accordion-button::after { filter: none; }
.accordion-body { color: var(--text-muted); padding: 4px 24px 22px; }

/* ===== Sobre ===== */
.about-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); height: 420px; width: 100%; object-fit: cover; }

/* ===== Blog ===== */
.blog-card {
    display: block; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 30px; height: 100%; box-shadow: var(--shadow-sm); transition: var(--transition); color: var(--text);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); color: var(--text); }
.blog-card-tag {
    display: inline-block; background: rgba(215,25,32,.1); color: var(--red); font-weight: 700; font-size: .72rem;
    text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card p { color: var(--text-muted); font-size: .92rem; }
.blog-card-link { color: var(--navy); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; }

/* ===== CTA final ===== */
.final-cta {
    padding: 100px 0; text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(215,25,32,.08), transparent 60%), var(--bg-alt);
}
.final-cta h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.final-cta p { color: var(--text-muted); font-size: 1.1rem; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); }
.footer-disclaimer {
    background: rgba(255,255,255,.03); border-bottom: 1px solid rgba(255,255,255,.08); padding: 36px 0;
}
.footer-disclaimer-title {
    color: #fff; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px;
}
.footer-disclaimer p {
    font-size: .82rem; line-height: 1.75; color: rgba(255,255,255,.55); max-width: 980px; margin-bottom: 10px;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-top { padding: 70px 0 40px; }
.footer-brand { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.3rem; color: #fff !important; display: inline-flex; gap: 10px; align-items: center; margin-bottom: 14px; }
.footer-brand i { color: var(--red); }
.footer-logo { height: 38px; width: auto; border-radius: 6px; object-fit: contain; }
.footer-text { font-size: .92rem; line-height: 1.7; max-width: 380px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); color: #fff;
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer-title { color: #fff; font-weight: 700; margin-bottom: 18px; font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: 12px; font-size: .92rem; }
.footer-links a { color: rgba(255,255,255,.75); transition: var(--transition); }
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--red); width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; font-size: .85rem; }
.text-muted-sm { color: rgba(255,255,255,.5); font-size: .8rem; }

/* ===== WhatsApp float + back to top ===== */
.whatsapp-float {
    position: fixed; bottom: 26px; right: 26px; width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 10px 26px rgba(37,211,102,.45); z-index: 1050; animation: pulse 2.4s infinite;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.back-to-top {
    position: fixed; bottom: 26px; left: 26px; width: 48px; height: 48px; border-radius: 50%;
    background: var(--navy); color: #fff; border: none; display: none; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); z-index: 1050; transition: var(--transition);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--red); transform: translateY(-4px); }

/* ===== Cookie banner ===== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; background: var(--ink); color: #fff; z-index: 1100;
    padding: 18px 20px; transform: translateY(100%); transition: transform .5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
    max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.cookie-banner p { margin: 0; font-size: .88rem; max-width: 700px; }
.cookie-banner a { color: #8fb3ff; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== Toasts ===== */
.toast { border-radius: var(--radius-sm); }

/* ===== Utility sections (admin login shares site) ===== */
.auth-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 20px;
}
.auth-card {
    background: var(--card-bg); border-radius: var(--radius-lg); padding: 42px; width: 100%; max-width: 420px;
    box-shadow: var(--shadow-lg);
}

/* ===== Article content (blog) ===== */
.article-content { font-size: 1.05rem; line-height: 1.85; color: var(--text); }
.article-content h2 { font-size: 1.4rem; margin: 40px 0 16px; color: var(--navy); }
[data-theme="dark"] .article-content h2 { color: #8fb3ff; }
.article-content p { margin-bottom: 18px; color: var(--text); }
.article-content strong { color: var(--text); }

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-section { padding-top: 100px; }
    .phone-mockup { position: static; width: 200px; margin: 24px auto 0; }
    .trust-bar { justify-content: center; text-align: center; }
    .section-block { padding: 64px 0; }
}
@media (max-width: 575px) {
    .hero-section { padding-top: 90px; padding-bottom: 40px; }
    .hero-section .row.gy-5 { --bs-gutter-y: 2rem; }
    .hero-image { height: 300px; }
    .simulador-card { padding: 24px; }
}
