/* ========================================
   LANDING — Guillermo Fernández
   Dark premium, minimalista
   ======================================== */

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

:root {
    --bg: #000000;
    --surface: #0a0a0a;
    --surface-2: #111111;
    --surface-3: #161616;
    --border: #1a1a1a;
    --border-light: #252525;
    --text: #e0e0e0;
    --text-dim: #888;
    --text-muted: #444;
    --accent: #5BB5F0;
    --accent-light: #8ED0F9;
    --accent-dark: #2E7AB8;
    --green: #4ade80;
    --gold: #c9a84c;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', 'Helvetica Neue', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    letter-spacing: -0.3px;
}

a { color: var(--accent); text-decoration: none; }

/* ===== HERO GLOWS ===== */

.hero-glow {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.4;
}

.hero-glow-1 {
    top: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91, 181, 240, 0.12) 0%, transparent 70%);
}

.hero-glow-2 {
    top: 20%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(142, 208, 249, 0.08) 0%, transparent 70%);
}

/* ===== ACCENT TEXT ===== */

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

/* brush-underline removed */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== FADE-IN SCROLL ANIMATIONS ===== */

.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ===== NAV TOP ===== */

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}

.landing-nav.scrolled {
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.landing-nav.nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-dim);
    letter-spacing: -0.2px;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

/* ===== BOTTOM NAV ===== */

.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-light);
    border-radius: 60px;
    padding: 8px 8px 8px 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 998;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
}

.bottom-nav.visible {
    transform: translateX(-50%) translateY(0);
}

.bottom-nav a {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    padding: 8px 14px;
    border-radius: 50px;
    transition: all 0.2s;
    letter-spacing: -0.2px;
}

.bottom-nav a:hover {
    color: var(--white);
    background: var(--surface-2);
}

.bottom-nav-cta {
    background: var(--white) !important;
    color: #000 !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    margin-left: 4px;
}

.bottom-nav-cta:hover {
    background: #e8e8e8 !important;
}

/* ===== CTA BUTTON ===== */

.cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--white);
    color: #000;
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.2px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transform: skewX(-20deg);
    animation: shine 3.5s infinite;
}

@keyframes shine {
    0% { left: -75%; }
    100% { left: 125%; }
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.18);
}

.cta-btn-secondary {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text);
}

.cta-btn-secondary::before { display: none; }

.cta-btn-secondary:hover {
    border-color: var(--text-dim);
    background: var(--surface-2);
}

.cta-btn-small {
    padding: 10px 24px;
    font-size: 12px;
}

.cta-btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
}

.cta-btn-outline::before { display: none; }

.cta-btn-outline:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
}

/* ===== HERO ===== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(91, 181, 240, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.hero-content {
    max-width: 740px;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 28px;
    border: 1px solid var(--border-light);
    padding: 7px 16px;
    border-radius: 50px;
}

.hero h1 {
    font-size: clamp(42px, 7.5vw, 76px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -3px;
    color: var(--white);
    margin-bottom: 28px;
}

.text-metallic {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #d8d8d8 30%,
        #ffffff 48%,
        #b8b8b8 65%,
        #e8e8e8 80%,
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-text 5s linear infinite;
}

@keyframes shimmer-text {
    to { background-position: 200% center; }
}

.hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.1px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== LOGOS CLUBES (debajo del hero) ===== */

.logos-hero-block {
    padding: 40px 0 20px;
}

.logos-subtitle {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    text-align: center;
    margin-bottom: 28px;
    font-style: italic;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.logos-section {
    padding: 20px 0 60px;
    overflow: hidden;
}

.logos-track {
    display: flex;
    animation: scroll-logos 28s linear infinite;
    width: max-content;
}

.logos-track:hover { animation-play-state: paused; }

.logo-item {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    margin: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 18px;
    transition: all 0.3s;
}

.logo-item:hover {
    border-color: rgba(91,181,240,0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(91,181,240,0.08);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
    opacity: 0.8;
    transition: all 0.3s;
}

.logo-item:hover img {
    filter: brightness(1.05);
    opacity: 1;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logos-fade-left,
.logos-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.logos-fade-left {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
}

.logos-fade-right {
    right: 0;
    background: linear-gradient(-90deg, var(--bg), transparent);
}

.logos-wrapper {
    position: relative;
    overflow: hidden;
}

/* ===== SECTIONS ===== */

section { padding: 96px 0; }

.section-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    text-align: center;
    opacity: 0.7;
}

.section-title {
    font-size: clamp(26px, 3.8vw, 40px);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--white);
    text-align: center;
    margin-bottom: 18px;
    line-height: 1.12;
}

.section-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-dim);
    text-align: center;
    max-width: 520px;
    margin: 0 auto 56px;
    line-height: 1.65;
}

/* ===== PILARES ===== */

.pilares-core {
    text-align: center;
    padding: 44px 48px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.pilares-core::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(91,181,240,0.35), transparent);
}

.pilares-core-icon {
    font-size: 22px;
    margin-bottom: 14px;
    opacity: 0.4;
}

.pilares-core h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.pilares-core p {
    font-size: 14px;
    color: var(--text-dim);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 300;
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pilar-card {
    padding: 32px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.pilar-card:hover {
    border-color: rgba(91,181,240,0.15);
    transform: translateY(-3px);
    background: var(--surface-2);
    box-shadow: 0 8px 32px rgba(91,181,240,0.06);
}

.pilar-icon {
    font-size: 22px;
    margin-bottom: 14px;
    opacity: 0.5;
}

.pilar-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.pilar-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
    font-weight: 300;
}

/* ===== CTA ALINEADO (para distintas secciones) ===== */

.section-cta {
    display: flex;
    align-items: center;
    margin-top: 52px;
}

.section-cta.center { justify-content: center; }
.section-cta.left { justify-content: flex-start; }
.section-cta.right { justify-content: flex-end; }

/* ===== PROBLEMAS ===== */

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 16px;
}

.problema-card {
    padding: 36px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.problema-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    transition: opacity 0.4s;
}

.problema-card:hover {
    border-color: rgba(255,255,255,0.12);
    background: var(--surface-2);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.problema-card:hover::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.problema-card:hover .problema-num {
    color: var(--text-dim);
}

.problema-visual {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.problema-card:hover .problema-visual {
    opacity: 1;
}

.problema-visual svg {
    width: 100%;
    height: 100%;
}

.problema-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.problema-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.problema-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.65;
    font-weight: 300;
}

/* ===== FASES ===== */

.fases-track {
    display: flex;
    gap: 12px;
    position: relative;
}

.fase-card {
    flex: 1;
    padding: 40px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    position: relative;
    z-index: 1;
    text-align: center;
    transition: all 0.3s;
}

.fase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(91,181,240,0.12);
    box-shadow: 0 12px 36px rgba(91,181,240,0.05);
}

.fase-number {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.fase-card:nth-child(1) .fase-number { color: var(--text-dim); }
.fase-card:nth-child(2) .fase-number { color: var(--accent); }
.fase-card:nth-child(3) .fase-number { color: var(--green); }
.fase-card:nth-child(4) .fase-number { color: var(--gold); }

.fase-0 {
    border-color: rgba(91,181,240,0.15);
}

.fase-0::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(91,181,240,0.2), transparent);
}

.fase-card h4 {
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.fase-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.65;
    font-weight: 300;
}

/* ===== METODO ===== */

.metodo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.metodo-item {
    padding: 36px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}

.metodo-item:hover {
    border-color: rgba(91,181,240,0.12);
    background: var(--surface-2);
    box-shadow: 0 8px 28px rgba(91,181,240,0.05);
}

.metodo-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.metodo-item p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.65;
    font-weight: 300;
}

.metodo-claim {
    text-align: center;
    margin-top: 48px;
    padding: 44px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.metodo-claim::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.claim-grid {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.claim-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.claim-col span {
    display: block;
    font-size: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    line-height: 1.5;
}

.claim-col-bold span {
    font-weight: 900;
    color: var(--white);
    text-align: right;
}

.claim-col-light span {
    font-weight: 300;
    color: var(--text-dim);
    text-align: left;
}

/* ===== SOBRE MI (compacto) ===== */

.about-compact {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 56px;
    align-items: start;
}

.about-photos-compact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 200px;
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.85) contrast(1.05);
    transition: all 0.5s;
}

.about-img-wrap:hover img {
    filter: brightness(1) contrast(1.05);
    transform: scale(1.03);
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
    pointer-events: none;
}

.about-text-block h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.about-text-block .about-role {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-text-block p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.75;
    margin-bottom: 14px;
    font-weight: 300;
}

.about-credentials {
    display: flex;
    gap: 28px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.about-stat-number {
    font-size: 30px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
}

.about-stat-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    font-weight: 500;
}

/* ===== NEWSLETTER ===== */

.newsletter-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 64px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(91,181,240,0.25), transparent);
}

.newsletter-section h3 {
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.newsletter-section p {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 32px;
    line-height: 1.65;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: -0.2px;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-input:focus { border-color: rgba(91,181,240,0.4); }

/* ===== VIDEO ===== */

.video-wrapper {
    max-width: 820px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

/* ===== FAQ ===== */

.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.faq-question h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-dim);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding-top: 16px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.75;
    font-weight: 300;
}

.faq-item.open .faq-answer { max-height: 500px; }

/* ===== CTA FINAL ===== */

.cta-section {
    text-align: center;
    padding: 100px 0 120px;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(91,181,240,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.cta-section p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-dim);
    margin-bottom: 44px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

/* ===== FOOTER ===== */

.landing-footer {
    padding: 40px 0 80px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: -0.1px;
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ===== COOKIE BANNER ===== */

.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 310px;
    background: rgba(14, 14, 14, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 22px 22px 18px;
    z-index: 9999;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s;
}

.cookie-banner.hidden {
    transform: translateY(130%);
    opacity: 0;
    pointer-events: none;
}

.cookie-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.cookie-text {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.55;
    margin-bottom: 16px;
    font-weight: 300;
}

.cookie-text a {
    color: var(--text-dim);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-btns {
    display: flex;
    gap: 8px;
}

.cookie-btn-outline {
    flex: 1;
    padding: 9px 12px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    color: var(--text-dim);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-outline:hover {
    border-color: var(--text-dim);
    color: var(--white);
}

.cookie-btn-accept {
    flex: 1;
    padding: 9px 12px;
    background: var(--white);
    border: none;
    border-radius: 50px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-accept:hover {
    background: #e8e8e8;
}

/* ===== CALCULADORA ===== */

.calc-box {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.calc-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(91,181,240,0.15), transparent);
}

.calc-slider-group {
    margin-bottom: 28px;
}

.calc-slider-group:last-child {
    margin-bottom: 0;
}

.calc-slider-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.calc-range {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: var(--border-light);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg);
    box-shadow: 0 0 8px rgba(91,181,240,0.3);
    cursor: pointer;
    transition: transform 0.15s;
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg);
    cursor: pointer;
}

.calc-value {
    font-size: 12px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 6px;
    text-align: right;
}

.calc-result {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calc-score-ring {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 16px;
}

.calc-score-ring svg {
    width: 100%;
    height: 100%;
}

#calc-ring {
    transition: stroke-dashoffset 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.calc-score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
}

.calc-score-text span {
    font-size: 40px;
}

.calc-result-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.calc-result-desc {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.65;
    font-weight: 300;
    max-width: 280px;
}

.calc-result-desc strong {
    color: var(--accent);
    font-weight: 700;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .landing-nav .nav-links { display: flex; gap: 0; }
    .landing-nav .nav-links a:not(.cta-btn) { display: none; }
    .landing-nav .nav-links .cta-btn { display: inline-block; font-size: 11px; padding: 8px 18px; }

    .hero { padding: 80px 20px 48px; min-height: 85vh; }
    .hero h1 { font-size: 36px; letter-spacing: -1.5px; }
    .hero-sub { font-size: 15px; margin-bottom: 36px; }
    .hero-tag { font-size: 10px; letter-spacing: 2.5px; }
    .hero-ctas { flex-direction: column; align-items: center; gap: 10px; }
    .hero-ctas .cta-btn { width: 100%; text-align: center; }

    .hero-glow-1 { width: 300px; height: 300px; top: -10%; left: -20%; }
    .hero-glow-2 { width: 250px; height: 250px; }

    section { padding: 56px 0; }

    .section-title { font-size: 24px; letter-spacing: -1px; }
    .section-desc { font-size: 14px; margin-bottom: 36px; }

    .pilares-grid { grid-template-columns: 1fr; }
    .pilares-core { padding: 24px 18px; }
    .pilares-core h3 { font-size: 17px; }

    .problemas-grid { grid-template-columns: 1fr; }
    .problema-card { padding: 28px 22px; }

    .fases-track { flex-direction: column; gap: 10px; }
    .fase-card { padding: 28px 22px; }
    .fase-card h4 { font-size: 22px; }

    .metodo-grid { grid-template-columns: 1fr; }
    .claim-col span { font-size: 14px; letter-spacing: 3px; }

    .about-compact { grid-template-columns: 1fr; gap: 28px; }
    .about-photos-compact { flex-direction: row; }
    .about-img-wrap { height: 160px; flex: 1; }
    .about-text-block h3 { font-size: 24px; }

    .calc-box { grid-template-columns: 1fr; gap: 32px; padding: 28px 22px; }
    .calc-score-ring { width: 130px; height: 130px; }
    .calc-score-text { font-size: 32px; }
    .calc-score-text span { font-size: 32px; }

    .newsletter-section { padding: 36px 20px; }
    .newsletter-form { flex-direction: column; }

    .logo-item { width: 68px; height: 68px; margin: 0 14px; padding: 12px; }
    .logos-subtitle { font-size: 11px; padding: 0 16px; }

    .cookie-banner { right: 12px; left: 12px; width: auto; bottom: 12px; }

    .bottom-nav { display: none; }

    .cta-section h2 { font-size: 24px; letter-spacing: -1px; }

    .video-wrapper { border-radius: 10px; }

    .faq-question h4 { font-size: 14px; }

    .landing-footer { padding-bottom: 40px; }

    .footer-links { flex-direction: column; gap: 12px; }
    .landing-footer { padding-bottom: 40px; }
}

/* ===== APLICAR PAGE ===== */

.aplicar-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 90px 24px 40px;
}

.aplicar-header {
    text-align: center;
    margin-bottom: 40px;
}

.aplicar-header h1 {
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.aplicar-header p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.65;
    font-weight: 300;
}

.aplicar-embed {
    width: 100%;
    max-width: 700px;
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
}

.aplicar-embed iframe {
    width: 100%;
    min-height: 600px;
    border: none;
}
