:root {
    --yellow:  #ECD865;
    --yellow-light: #F2E591;
    --navy:    #204779;
    --gray:    #E6E3E0;
    --white:   #FFFFFF;
    --dark:    #1a1a1a;
}

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

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Raleway', sans-serif; }

h2 {
    font-weight: 200;
    font-size: clamp(1.85rem, 3.7vw, 3.3rem);
    letter-spacing: 0.03em;
}

p {
    font-weight: 300;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.85;
}

/* ─── NAVIGATION ───────────────────────────────── */
nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(32,71,121,0.08);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    transition: box-shadow 0.3s;
}

.nav-logo {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: 1.25rem;
    letter-spacing: 0.18em;
    color: var(--navy);
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.6rem;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--yellow); }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--navy);
    transition: 0.3s;
}

/* ─── HERO ─────────────────────────────────────── */
#hero {
    height: 100vh;
    min-height: 600px;
    display: grid;
    grid-template-columns: 42% 58%;
    position: relative;
    overflow: hidden;
}

.hero-text {
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 7% 0 10%;
    position: relative;
    z-index: 2;
}

.hero-text::after {
    content: '';
    position: absolute;
    top: -20%; left: -30%;
    width: 60%; height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236,216,101,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-photo {
    position: relative;
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.8rem;
    display: block;
}

.hero-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    font-size: clamp(2.8rem, 5.1vw, 5.7rem);
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1.0;
    margin-bottom: 1.4rem;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 3rem;
    line-height: 2;
}

.hero-cta {
    display: inline-block;
    align-self: flex-start;
    padding: 14px 40px;
    border: 1px solid var(--yellow);
    color: var(--yellow);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.hero-cta:hover {
    background: var(--yellow);
    color: var(--navy);
}

.hero-scroll {
    position: absolute;
    bottom: 36px; left: 21%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.25);
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    z-index: 3;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(236,216,101,0.5), transparent);
    animation: scrollFade 2s ease-in-out infinite;
}

@keyframes scrollFade {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; }
}

/* ─── SHARED SECTION STYLES ────────────────────── */
section { padding: 110px 5%; }

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header { margin-bottom: 60px; }
.section-header h2 { color: var(--navy); }
.section-header p { max-width: 580px; margin-top: 1rem; }

.link-arrow {
    display: inline-block;
    color: var(--navy);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--yellow);
    padding-bottom: 2px;
    margin-top: 1.5rem;
    transition: border-color 0.3s, color 0.3s;
}

.link-arrow:hover { color: var(--yellow); border-color: var(--yellow); }

/* ─── SOBRE VALE ────────────────────────────────── */
#sobre-vale { background: var(--white); }

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 90px;
    align-items: center;
}

.sobre-img-wrap {
    position: relative;
}

.sobre-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -18px; right: -18px;
    width: 100%; height: 100%;
    border: 1px solid var(--yellow);
    z-index: 0;
}

.sobre-image {
    aspect-ratio: 3/4;
    background: var(--gray);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-placeholder {
    color: #bbb;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.sobre-text h2 { color: var(--navy); margin-bottom: 1.2rem; }
.sobre-text p  { margin-bottom: 0.6rem; line-height: 1.55; }
.sobre-text .link-arrow { margin-top: 0.4rem; }

.sobre-quote {
    border-left: 2px solid var(--yellow);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: 1.15rem;
    color: var(--navy);
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.sobre-list {
    list-style: none;
    margin: 0.5rem 0 0.4rem 0;
    padding: 0;
}

.sobre-list li {
    font-weight: 300;
    font-size: 0.875rem;
    color: #555;
    line-height: 2;
    padding-left: 1.2rem;
    position: relative;
}

.sobre-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-size: 1.2rem;
    line-height: 1.6;
}

.sobre-eje {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
    color: #555;
    margin-bottom: 0.5rem;
}

/* ─── PARA VOS ──────────────────────────────────── */
#para-vos { background: var(--gray); }

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

.card {
    background: var(--white);
    padding: 0 0 42px 0;
    transition: transform 0.3s;
    overflow: hidden;
}

.card:hover { transform: translateY(-5px); }

.card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 0;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.card:hover .card-img img { transform: scale(1.04); }

.card-body {
    padding: 32px 38px 0;
}

.card-number {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: #DDCC5F;
    line-height: 1;
    margin-bottom: 1rem;
}

.card h3 {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.card-img-contain {
    background: white;
    padding: 24px;
}

.card-img-contain img {
    object-fit: contain !important;
}

.card-list {
    list-style: none;
    margin: 0.4rem 0 1rem 0;
    padding: 0;
}

.card-list li {
    font-weight: 300;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.9;
    padding-left: 1.1rem;
    position: relative;
}

.card-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-size: 1.2rem;
    line-height: 1.55;
}

/* ─── PARA TU EMPRESA ───────────────────────────── */
#para-empresa { background: var(--navy); }

#para-empresa .section-label { color: var(--yellow); }
#para-empresa .section-header h2 { color: var(--white); }
#para-empresa .section-header p  { color: rgba(255,255,255,0.55); }

.empresa-single {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 80px;
    border: 1px solid rgba(236,216,101,0.2);
    padding: 70px 60px;
    background: rgba(255,255,255,0.04);
}

.empresa-single-title {
    position: relative;
}

.empresa-single-title::after {
    content: '';
    position: absolute;
    top: 0; left: -60px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--yellow), transparent);
}

.empresa-single-title h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--yellow);
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.empresa-single-text p {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    margin-bottom: 1.3rem;
}

.empresa-single-text p:last-child { margin-bottom: 0; }

.empresa-cta {
    text-align: center;
    margin-top: 70px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 52px;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-primary:hover { background: var(--yellow-light); }

/* ─── PUBLICACIONES ─────────────────────────────── */
#publicaciones { background: var(--white); }

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

.pub-card { border-top: 1px solid var(--gray); padding-top: 28px; }

.pub-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pub-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--gray);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.pub-tag {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 400;
    margin-bottom: 0.6rem;
}

.pub-card h3 {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.pub-card p { font-size: 0.78rem; }

.pub-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s;
}
.pub-title-link:hover { color: var(--yellow); }

/* ─── PUNTO CIEGO ──────────────────────────────── */
#punto-ciego { background: var(--gray); }

.pc-home-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.pc-home-logo img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.pc-home-info h2 {
    color: var(--navy);
    margin: 0.8rem 0 1.4rem;
}

.pc-home-info p {
    margin-bottom: 0.6rem;
}

@media (max-width: 860px) {
    .pc-home-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .pc-home-logo img { max-width: 140px; }
}

/* ─── PODCAST ───────────────────────────────────── */
#podcast { background: var(--yellow-light); }

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

.podcast-logo {
    width: 140px;
    margin-bottom: 1.8rem;
}

.podcast-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.podcast-info h2 { color: var(--navy); margin-bottom: 1.5rem; }
.podcast-info p  { margin-bottom: 0.4rem; }

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

.platform-btn {
    padding: 10px 22px;
    border: 1px solid var(--navy);
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
    display: inline-block;
}

.platform-btn:hover {
    background: var(--navy);
    color: var(--yellow);
}

.podcast-episodes-wrapper {
    position: relative;
    overflow: hidden;
}

.podcast-proximamente {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(236, 216, 101, 0.18);
    z-index: 10;
    pointer-events: none;
}

.podcast-proximamente span {
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 14px 60px;
    transform: rotate(-15deg);
    white-space: nowrap;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.podcast-episodes {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.episode {
    background: white;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: background 0.25s;
}

.episode:hover { background: var(--navy); }

.episode-num {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    font-size: 1.6rem;
    color: var(--yellow);
    min-width: 38px;
    line-height: 1;
    transition: color 0.25s;
}

.episode-info { flex: 1; }

.episode-title {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 3px;
    transition: color 0.25s;
}

.episode-desc {
    font-size: 0.7rem;
    color: #999;
    font-weight: 300;
    transition: color 0.25s;
}

.episode-duration {
    font-size: 0.65rem;
    color: #bbb;
    letter-spacing: 0.04em;
    transition: color 0.25s;
}

.episode:hover .episode-title { color: white; }
.episode:hover .episode-desc  { color: rgba(255,255,255,0.5); }
.episode:hover .episode-duration { color: rgba(255,255,255,0.4); }

a.episode { text-decoration: none; }

/* ─── LO NUEVO ──────────────────────────────────── */
#lo-nuevo { background: var(--white); }

.nuevo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2px;
}

.nuevo-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.nuevo-card-inner {
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    position: relative;
    background: var(--white);
    transition: background 0.4s;
}

.nuevo-card:hover .nuevo-card-inner { background: var(--navy); }

.nuevo-stripe {
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--yellow);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s;
}

.nuevo-card:hover .nuevo-stripe { transform: scaleY(1); }

.proximamente-badge {
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 38px;
    transform: rotate(35deg);
    z-index: 10;
    white-space: nowrap;
}

.nuevo-tag {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 400;
    margin-bottom: 0.6rem;
}

.nuevo-card h3 {
    font-weight: 200;
    font-size: 1.15rem;
    color: var(--navy);
    line-height: 1.35;
    letter-spacing: 0.01em;
    transition: color 0.3s;
}

.nuevo-card:hover h3 { color: white; }

.nuevo-body {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.nuevo-card:hover .nuevo-body { color: rgba(255,255,255,0.65); }

/* ─── NEWSLETTER ────────────────────────────────── */
.newsletter-block {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(236,216,101,0.25);
    border-radius: 2px;
    padding: 48px 56px;
    margin-bottom: 70px;
}

.newsletter-block .section-label { color: var(--yellow); margin-bottom: 0.8rem; }

.newsletter-block h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--white);
    margin-bottom: 0.6rem;
}

.newsletter-block p {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    margin-bottom: 1.6rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 13px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    outline: none;
    transition: border-color 0.25s;
}

.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input[type="email"]:focus { border-color: var(--yellow); }

.newsletter-form button {
    padding: 13px 32px;
    background: var(--yellow);
    color: var(--navy);
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.25s;
    white-space: nowrap;
}

.newsletter-form button:hover { opacity: 0.85; }

.newsletter-msg {
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--yellow);
    display: none;
}

/* ─── CONTACTO ──────────────────────────────────── */
#contacto { background: var(--navy); }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 90px;
}

.contact-info .section-label { color: var(--yellow); }
.contact-info h2 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info > p { color: rgba(255,255,255,0.55); margin-bottom: 3rem; }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.c-detail-label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 300;
    margin-bottom: 3px;
}

.c-detail-value {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 14px 18px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.25s;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--yellow);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); }

.form-group textarea { resize: none; height: 150px; }

.form-group select option { background: #1a2e4a; color: white; }

.btn-submit {
    align-self: flex-start;
    padding: 16px 52px;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover { background: var(--yellow-light); }

/* ─── FOOTER ────────────────────────────────────── */
footer {
    background: #0f1e30;
    padding: 46px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
}

.footer-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.04em;
}

.footer-social {
    display: flex;
    gap: 1.8rem;
}

.footer-social a {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.25s;
}

.footer-social a:hover { color: var(--yellow); }

/* ─── PAGE HERO (páginas internas sin hero grande) ── */
.page-hero {
    padding: 160px 5% 60px;
    background: var(--navy);
}

.page-hero .section-label { color: var(--yellow); }
.page-hero h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    color: var(--white);
    letter-spacing: 0.02em;
    margin-top: 0.6rem;
}
.page-hero p {
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin-top: 1rem;
}

/* ─── HOME TEASERS ──────────────────────────────── */
.teaser-more { margin-top: 2.5rem; }

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .pub-grid   { grid-template-columns: repeat(2, 1fr); }
    .nuevo-grid { grid-template-columns: 1fr 1fr; }
    .nuevo-grid .nuevo-card:first-child { grid-column: span 2; }
    .sobre-grid { gap: 50px; }
}

@media (max-width: 768px) {
    #hero {
        grid-template-columns: 1fr;
        grid-template-rows: 55vh 1fr;
    }

    .hero-photo { order: -1; }

    .hero-text {
        padding: 50px 8%;
        align-items: flex-start;
    }

    .hero-scroll { left: 50%; bottom: auto; top: 48vh; }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px; left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        padding: 30px 7%;
        gap: 1.8rem;
        border-bottom: 1px solid var(--gray);
    }

    .nav-links.open { display: flex; }
    .hamburger      { display: flex; }

    section { padding: 75px 6%; }

    .sobre-grid,
    .podcast-layout,
    .contact-layout { grid-template-columns: 1fr; gap: 50px; }

    .sobre-image { max-height: 380px; }

    .cards-grid,
    .pub-grid    { grid-template-columns: 1fr; }

    .empresa-single { grid-template-columns: 1fr; gap: 40px; padding: 50px 30px; }
    .empresa-single-title::after { display: none; }

    .nuevo-grid { grid-template-columns: 1fr; }
    .nuevo-grid .nuevo-card:first-child { grid-column: span 1; }

    .form-row { grid-template-columns: 1fr; }

    footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 3.2rem; }
}
