/* =============================================
   APACHES COLECTIVO — ESTILOS BASE
   Tema: Negro + Verde Neon + Magenta
   ============================================= */

/* VARIABLES */
:root {
    --color-bg:         #080808;
    --color-surface:    #111111;
    --color-surface-2:  #181818;
    --color-green:      #BFFF00;
    --color-magenta:    #FF00FF;
    --color-white:      #FFFFFF;
    --color-muted:      rgba(255, 255, 255, 0.55);
    --color-border:     rgba(255, 255, 255, 0.08);
    --color-glass-bg:   rgba(255, 255, 255, 0.04);
    --color-glass-border: rgba(255, 255, 255, 0.1);

    --font-display:     'Bebas Neue', sans-serif;
    --font-body:        'Space Grotesk', sans-serif;

    --size-xs:   0.75rem;
    --size-sm:   0.875rem;
    --size-base: 1rem;
    --size-lg:   1.125rem;
    --size-xl:   1.25rem;
    --size-2xl:  1.5rem;
    --size-3xl:  2rem;
    --size-4xl:  2.5rem;
    --size-5xl:  3.5rem;
    --size-6xl:  5rem;
    --size-7xl:  7rem;

    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  16px;
    --radius-xl:  24px;
    --radius-full: 9999px;

    --shadow-green:   0 0 30px rgba(191, 255, 0, 0.25);
    --shadow-magenta: 0 0 30px rgba(255, 0, 255, 0.25);
    --shadow-card:    0 8px 32px rgba(0, 0, 0, 0.5);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--size-base);
    line-height: 1.65;
    overflow-x: hidden;
    cursor: none;
}

@media (hover: none) {
    body { cursor: auto; }
}

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

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

ul { list-style: none; }

button {
    cursor: none;
    border: none;
    background: none;
    font-family: inherit;
}

@media (hover: none) {
    button { cursor: pointer; }
}

/* CURSOR PERSONALIZADO */
.cursor,
.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor {
    width: 10px;
    height: 10px;
    background: var(--color-green);
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--color-green);
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0.6;
}

.cursor.cursor--hover { transform: translate(-50%, -50%) scale(2); }
.cursor-follower.cursor--hover { width: 60px; height: 60px; opacity: 0.3; }

/* CONTENEDOR */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ACENTOS DE COLOR */
.accent-green   { color: var(--color-green); }
.accent-magenta { color: var(--color-magenta); }

/* UTILIDADES */
.hidden { display: none !important; }
.mt-1 { margin-top: 1rem; }

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 var(--color-border);
}

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

/* LOGO */
.logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--color-white);
    line-height: 1;
}

.logo-dot {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-green);
    line-height: 1;
}

/* NAV */
.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: var(--size-sm);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-muted);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: color var(--transition), background var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: var(--color-green);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

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

.nav-link:hover::after { transform: scaleX(1); }

.nav-link.nav-cta {
    color: var(--color-bg);
    background: var(--color-green);
    padding: 8px 20px;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.nav-link.nav-cta::after { display: none; }

.nav-link.nav-cta:hover {
    background: #d4ff33;
    color: var(--color-bg);
    box-shadow: var(--shadow-green);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px;
    z-index: 100;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

.hamburger span:last-child { width: 70%; }

.hamburger.active span:first-child  { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:last-child   { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-orb--green {
    width: 600px;
    height: 600px;
    background: var(--color-green);
    top: -200px;
    right: -100px;
}

.hero-orb--magenta {
    width: 400px;
    height: 400px;
    background: var(--color-magenta);
    bottom: -100px;
    left: -50px;
    animation-delay: -4s;
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-eyebrow {
    font-size: var(--size-sm);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-green);
    margin-bottom: 24px;
    opacity: 0;
}

.hero-title {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
    overflow: hidden;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: clamp(var(--size-lg), 2.5vw, var(--size-2xl));
    font-weight: 400;
    color: var(--color-muted);
    max-width: 560px;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0;
}

.hero-subtitle em {
    font-style: normal;
    color: var(--color-white);
    font-weight: 600;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--size-4xl);
    color: var(--color-green);
    line-height: 1;
    letter-spacing: 0.02em;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1;
    animation: fadeInUp 1s 1.5s ease both;
}

.hero-scroll-text {
    font-size: var(--size-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted);
    writing-mode: horizontal-tb;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-green), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* =============================================
   SOBRE NOSOTROS
   ============================================= */
.about {
    padding: 120px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-tag { margin-bottom: 20px; }

.about-desc {
    color: var(--color-muted);
    font-size: var(--size-lg);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-desc strong { color: var(--color-white); }

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    padding: 28px;
}

.about-card--offset { margin-left: 40px; }

.about-card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.about-card h3 {
    font-family: var(--font-body);
    font-size: var(--size-lg);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-white);
}

.about-card p {
    font-size: var(--size-sm);
    color: var(--color-muted);
    line-height: 1.6;
}

/* =============================================
   SERVICIOS
   ============================================= */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(191,255,0,0.02) 50%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    opacity: 0;
}

.section-subtitle {
    font-size: var(--size-lg);
    color: var(--color-muted);
    max-width: 480px;
    margin: 16px auto 0;
    line-height: 1.6;
}

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

.service-card {
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    opacity: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-green), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover { transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.service-number {
    font-family: var(--font-display);
    font-size: var(--size-5xl);
    color: var(--color-border);
    line-height: 1;
    transition: color var(--transition);
}

.service-card:hover .service-number { color: rgba(191, 255, 0, 0.15); }

.service-icon-wrap {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    transition: border-color var(--transition), background var(--transition);
    flex-shrink: 0;
}

.service-icon-wrap svg { width: 22px; height: 22px; }

.service-card:hover .service-icon-wrap {
    border-color: var(--color-green);
    background: rgba(191, 255, 0, 0.08);
}

.service-title {
    font-size: var(--size-2xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.service-desc {
    font-size: var(--size-sm);
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.service-link {
    font-size: var(--size-sm);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-muted);
    text-transform: uppercase;
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link .arrow {
    display: inline-block;
    transition: transform var(--transition);
}

.service-link:hover { color: var(--color-green); }
.service-link:hover .arrow { transform: translateX(4px); }

/* =============================================
   PODCAST
   ============================================= */
.podcast {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.podcast-bg-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(191,255,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.podcast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.podcast-player {
    padding: 0;
    overflow: hidden;
}

.podcast-cover {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.podcast-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 80%, rgba(191,255,0,0.08) 0%, transparent 60%);
}

.podcast-cover-text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.podcast-el {
    font-family: var(--font-display);
    font-size: var(--size-3xl);
    color: var(--color-muted);
    letter-spacing: 0.2em;
}

.podcast-name {
    font-family: var(--font-display);
    font-size: var(--size-4xl);
    color: var(--color-green);
    letter-spacing: 0.05em;
    line-height: 1;
    text-shadow: 0 0 40px rgba(191,255,0,0.4);
}

.podcast-by {
    font-size: var(--size-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.podcast-wave {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
    position: relative;
}

.podcast-wave span {
    display: block;
    width: 4px;
    background: var(--color-green);
    border-radius: 2px;
    animation: waveBar 1.2s ease-in-out infinite alternate;
    opacity: 0.7;
}

.podcast-wave span:nth-child(1)  { height: 12px; animation-delay: 0s;    }
.podcast-wave span:nth-child(2)  { height: 28px; animation-delay: 0.1s;  }
.podcast-wave span:nth-child(3)  { height: 20px; animation-delay: 0.2s;  }
.podcast-wave span:nth-child(4)  { height: 36px; animation-delay: 0.15s; }
.podcast-wave span:nth-child(5)  { height: 16px; animation-delay: 0.05s; }
.podcast-wave span:nth-child(6)  { height: 32px; animation-delay: 0.25s; }
.podcast-wave span:nth-child(7)  { height: 22px; animation-delay: 0.1s;  }
.podcast-wave span:nth-child(8)  { height: 14px; animation-delay: 0.3s;  }
.podcast-wave span:nth-child(9)  { height: 30px; animation-delay: 0.2s;  }
.podcast-wave span:nth-child(10) { height: 18px; animation-delay: 0.05s; }

.podcast-meta {
    padding: 28px 36px;
}

.podcast-ep-label {
    font-size: var(--size-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-green);
    margin-bottom: 8px;
}

.podcast-ep-title {
    font-size: var(--size-lg);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.4;
}

.podcast-platforms {
    display: flex;
    gap: 8px;
}

/* PODCAST TEXT SIDE */
.podcast-text .section-tag { margin-bottom: 20px; }

.podcast-desc {
    font-size: var(--size-lg);
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.podcast-features {
    margin-bottom: 36px;
}

.podcast-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--size-base);
    color: var(--color-muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.podcast-features li:last-child { border-bottom: none; }

.check {
    color: var(--color-green);
    font-weight: 700;
    font-size: var(--size-lg);
}

.podcast-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* =============================================
   TESTIMONIOS
   ============================================= */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255,0,255,0.02) 50%, transparent 100%);
}

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

.testimonial-card {
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transition: transform var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-magenta), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card:hover::after { opacity: 1; }

.testimonial-stars {
    color: var(--color-green);
    font-size: var(--size-sm);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: var(--size-base);
    color: var(--color-muted);
    line-height: 1.7;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green), var(--color-magenta));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--size-xs);
    font-weight: 700;
    color: var(--color-bg);
    flex-shrink: 0;
}

.testimonial-name {
    font-size: var(--size-sm);
    font-weight: 700;
    color: var(--color-white);
}

.testimonial-role {
    font-size: var(--size-xs);
    color: var(--color-muted);
    margin-top: 2px;
}

/* =============================================
   CONTACTO
   ============================================= */
.contact {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-bg-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at bottom right, rgba(191,255,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-desc {
    font-size: var(--size-lg);
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-glass-bg);
    transition: border-color var(--transition), background var(--transition);
    text-decoration: none;
    color: inherit;
}

a.contact-method:hover {
    border-color: var(--color-green);
    background: rgba(191, 255, 0, 0.04);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(191, 255, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
    flex-shrink: 0;
}

.contact-method-label {
    display: block;
    font-size: var(--size-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 4px;
}

.contact-method-value {
    display: block;
    font-size: var(--size-base);
    font-weight: 600;
    color: var(--color-white);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--color-border);
    background: var(--color-surface);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-logo { margin-bottom: 16px; display: inline-flex; }

.footer-tagline {
    font-size: var(--size-sm);
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-loc {
    font-size: var(--size-xs);
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
}

.footer-col-title {
    font-size: var(--size-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: var(--size-sm);
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}

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

.social-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    flex-shrink: 0;
}

.social-icon svg { width: 16px; height: 16px; }

.social-icon:hover {
    color: var(--color-bg);
    background: var(--color-green);
    border-color: var(--color-green);
}

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

.footer-bottom p {
    font-size: var(--size-xs);
    color: rgba(255,255,255,0.3);
}

.footer-made { color: rgba(255,255,255,0.3); }

/* =============================================
   SECCIONES COMUNES
   ============================================= */
.section-tag {
    display: inline-block;
    font-size: var(--size-xs);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-green);
    border: 1px solid rgba(191, 255, 0, 0.3);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    background: rgba(191, 255, 0, 0.06);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(var(--size-4xl), 5vw, var(--size-6xl));
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--color-white);
    margin-bottom: 20px;
}

/* =============================================
   BOTONES
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: var(--size-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: none;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

@media (hover: none) { .btn { cursor: pointer; } }

.btn-primary {
    background: var(--color-green);
    color: var(--color-bg);
    border-color: var(--color-green);
}

.btn-primary:hover {
    background: #d4ff33;
    border-color: #d4ff33;
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

.btn-sm {
    padding: 10px 20px;
    font-size: var(--size-xs);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .about-grid  { gap: 48px; }
    .podcast-grid { gap: 48px; }
    .contact-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }

    .nav.nav--open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .nav-link {
        font-size: var(--size-2xl);
        letter-spacing: 0.08em;
    }

    .nav-link.nav-cta { font-size: var(--size-lg); }

    .hamburger { display: flex; }

    .about-grid  { grid-template-columns: 1fr; }
    .about-card--offset { margin-left: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .podcast-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .hero-stats {
        gap: 24px;
    }

    .stat-number { font-size: var(--size-3xl); }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 16px; }
    .stat-divider { height: 30px; }
    .podcast-ctas { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
