/* ---------------------------------------------------------------
 * Voces PTM Radio — main.css
 * --------------------------------------------------------------- */

:root {
    --vocesptm-primary: #0c8ae9;
    --vocesptm-accent: #f70d28;
    --vocesptm-bg: #ffffff;
    --vocesptm-text: #15171a;
    --vocesptm-muted: #6b7280;
    --vocesptm-border: #e5e7eb;
    --vocesptm-surface: #f8fafc;
    --vocesptm-radius: 12px;
    --vocesptm-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
    --vocesptm-font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --vocesptm-heading: 'Bebas Neue', 'Montserrat', sans-serif;
    --vocesptm-container: 1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--vocesptm-font);
    color: var(--vocesptm-text);
    background: var(--vocesptm-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--vocesptm-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 { font-family: var(--vocesptm-heading); font-weight: 400; line-height: 1.15; margin: 0 0 .5em; letter-spacing: .3px; }

.container {
    width: 100%;
    max-width: var(--vocesptm-container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.screen-reader-text {
    border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
    height: 1px; width: 1px; overflow: hidden; position: absolute !important;
    word-wrap: normal !important;
}

.skip-link {
    position: absolute; left: -9999px; top: 0; background: #000; color: #fff; padding: .75rem 1rem; z-index: 100000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Topbar ---------- */
.topbar {
    background: #0b0f14;
    color: #fff;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px;
}
.topbar-date { text-transform: capitalize; opacity: .85; }
.topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.top-menu, .social-menu {
    list-style: none; padding: 0; margin: 0; display: flex; gap: 1rem;
}
.top-menu a, .social-menu a { color: #fff; opacity: .8; }
.top-menu a:hover, .social-menu a:hover { opacity: 1; text-decoration: none; }

/* ---------- Header ---------- */
.site-header { background: #fff; border-bottom: 1px solid var(--vocesptm-border); }

/* ---------- Main navigation ---------- */
.main-navigation {
    background: var(--vocesptm-primary);
    background: linear-gradient(180deg, var(--vocesptm-primary) 0%, color-mix(in srgb, var(--vocesptm-primary) 88%, #000) 100%);
    color: #fff;
    position: relative;
    z-index: 200;
}
.nav-inner { display: flex; align-items: center; position: relative; }

/* Lista de primer nivel */
.primary-menu {
    list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; align-items: stretch;
}
.primary-menu li { position: relative; }

.primary-menu a {
    color: #fff;
    padding: 1rem 1.15rem;
    display: flex;
    align-items: center;
    gap: .35rem;
    font-weight: 600;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: .6px;
    line-height: 1;
    transition: color .18s ease, background .18s ease;
}
.primary-menu a:hover { color: #fff; text-decoration: none; }

/* Indicador animado bajo cada item de primer nivel */
.primary-menu > li > a::after {
    content: "";
    position: absolute;
    left: 1.15rem;
    right: 1.15rem;
    bottom: .55rem;
    height: 2px;
    background: var(--vocesptm-accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .22s ease;
}
.primary-menu > li:hover > a::after,
.primary-menu > li:focus-within > a::after,
.primary-menu > li.current-menu-item > a::after,
.primary-menu > li.current-menu-ancestor > a::after { transform: scaleX(1); }

.primary-menu > li:hover > a,
.primary-menu > li:focus-within > a { background: rgba(0,0,0,.14); }
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation .current-menu-ancestor > a { background: rgba(0,0,0,.2); }

/* Botón destacado "En Vivo" (clase menu-cta) */
.primary-menu .menu-cta { margin-left: .25rem; }
.primary-menu .menu-cta > a {
    background: var(--vocesptm-accent);
    margin: .35rem 0;
    border-radius: 999px;
    padding: .55rem 1.15rem;
}
.primary-menu .menu-cta > a::after { display: none; }
.primary-menu .menu-cta > a::before {
    content: "";
    width: 8px; height: 8px; border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255,255,255,.7);
    animation: vocesptm-live-pulse 1.6s infinite;
}
.primary-menu .menu-cta:hover > a { background: color-mix(in srgb, var(--vocesptm-accent) 85%, #000); }
/* Estado "sonando": muestra PAUSAR con fondo más oscuro y punto fijo */
.primary-menu .menu-cta > a.is-playing { background: color-mix(in srgb, var(--vocesptm-accent) 70%, #000); }
.primary-menu .menu-cta > a.is-playing::before { animation: none; box-shadow: none; }
@keyframes vocesptm-live-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
    70%  { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Caret de submenú */
.submenu-caret { flex: 0 0 auto; opacity: .85; transition: transform .22s ease; }
.primary-menu .submenu-toggle {
    display: none; background: transparent; border: 0; color: inherit; cursor: pointer; padding: 0;
}

/* ---- Dropdowns (escritorio) ---- */
.primary-menu .sub-menu {
    list-style: none; margin: 0; padding: .4rem;
    position: absolute; top: 100%; left: 0; min-width: 230px;
    background: #fff;
    border-radius: 0 0 var(--vocesptm-radius) var(--vocesptm-radius);
    box-shadow: 0 12px 32px rgba(0,0,0,.16);
    border-top: 3px solid var(--vocesptm-accent);
    display: flex; flex-direction: column; gap: 1px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 210;
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-menu .sub-menu a {
    color: var(--vocesptm-text);
    text-transform: none;
    letter-spacing: .2px;
    font-size: 14px;
    font-weight: 500;
    padding: .65rem .85rem;
    border-radius: 8px;
}
.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu .current-menu-item > a {
    background: var(--vocesptm-surface);
    color: var(--vocesptm-primary);
}
.primary-menu .sub-menu > li > a::after { display: none; }

/* Submenús de tercer nivel: se abren al lado */
.primary-menu .sub-menu .sub-menu { top: -.4rem; left: 100%; border-radius: var(--vocesptm-radius); }
.primary-menu .sub-menu .menu-item-has-children > a { justify-content: space-between; }
.primary-menu .sub-menu .submenu-caret { transform: rotate(-90deg); }

/* Botón "Inicio" hamburguesa */
.menu-toggle {
    display: none; background: transparent; border: 0; padding: .8rem 1rem .8rem 0; cursor: pointer; color: #fff; align-items: center; gap: .5rem;
}
.menu-toggle .menu-bar { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; transition: transform .25s ease, opacity .25s ease; }
.main-navigation.is-open .menu-toggle .menu-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.main-navigation.is-open .menu-toggle .menu-bar:nth-child(2) { opacity: 0; }
.main-navigation.is-open .menu-toggle .menu-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Nav fija al hacer scroll */
.main-navigation.is-stuck {
    position: fixed; top: 0; left: 0; right: 0;
    box-shadow: 0 4px 18px rgba(0,0,0,.18);
    animation: vocesptm-slidedown .3s ease;
}
@keyframes vocesptm-slidedown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* ---------- Navegación móvil ---------- */
@media (max-width: 900px) {
    .nav-inner { flex-wrap: wrap; }
    .menu-toggle { display: inline-flex; }

    .primary-menu {
        display: none; flex-direction: column; width: 100%;
        flex-wrap: nowrap;
        max-height: calc(100vh - 60px); overflow-y: auto;
        border-top: 1px solid rgba(255,255,255,.12);
    }
    .main-navigation.is-open .primary-menu { display: flex; }
    .primary-menu li { border-bottom: 1px solid rgba(255,255,255,.1); }
    .primary-menu a { padding: .95rem 1rem; }
    .primary-menu > li > a::after { display: none; }

    /* Caret como botón táctil */
    .primary-menu .menu-item-has-children { display: flex; flex-wrap: wrap; align-items: center; }
    .primary-menu .menu-item-has-children > a { flex: 1; }
    .primary-menu .submenu-toggle {
        display: inline-flex; align-items: center; justify-content: center;
        width: 48px; align-self: stretch; color: #fff;
        border-left: 1px solid rgba(255,255,255,.12);
    }
    .primary-menu .submenu-toggle[aria-expanded="true"] .submenu-caret { transform: rotate(180deg); }

    /* Submenús como acordeón */
    .primary-menu .sub-menu {
        position: static; width: 100%; min-width: 0;
        opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border-radius: 0; border-top: 0;
        background: rgba(0,0,0,.16); padding: 0;
        display: none;
    }
    .primary-menu .sub-menu.is-open { display: flex; }
    .primary-menu .sub-menu a { color: #fff; padding-left: 2rem; border-radius: 0; }
    .primary-menu .sub-menu a:hover,
    .primary-menu .sub-menu .current-menu-item > a { background: rgba(0,0,0,.25); color: #fff; }
    .primary-menu .sub-menu .sub-menu { background: rgba(0,0,0,.28); }
    .primary-menu .sub-menu .sub-menu a { padding-left: 3rem; }
    .primary-menu .sub-menu .submenu-caret { transform: none; }

    /* CTA "En Vivo" como fila normal en móvil */
    .primary-menu .menu-cta { margin-left: 0; }
    .primary-menu .menu-cta > a {
        background: var(--vocesptm-accent); margin: 0; border-radius: 0; padding: .95rem 1rem;
    }
}

/* ---------- Layout ---------- */
.site-content { padding: 2rem 0 3rem; min-height: 50vh; }

.layout-with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 2rem; }
.primary-content.full-width { grid-column: 1 / -1; }
@media (max-width: 900px) { .layout-with-sidebar { grid-template-columns: 1fr; } }

/* ---------- Posts grid ---------- */
.posts-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.posts-grid.magazine .feature-post { grid-column: 1 / -1; }

.card-post, .feature-post {
    background: #fff; border: 1px solid var(--vocesptm-border); border-radius: var(--vocesptm-radius); overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.card-post:hover, .feature-post:hover { transform: translateY(-2px); box-shadow: var(--vocesptm-shadow); }
.card-thumb img, .feature-thumb img { width: 100%; height: 200px; object-fit: cover; display: block; }
.feature-thumb img { height: 460px; }
.card-body, .feature-body { padding: 1rem 1.1rem 1.25rem; }
.card-category, .feature-category, .entry-category {
    display: inline-block; background: var(--vocesptm-accent); color: #fff; font-size: 11px; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .5rem;
}
.card-title { font-family: var(--vocesptm-heading); font-size: 1.25rem; margin: .25rem 0 .5rem; }
.feature-title { font-family: var(--vocesptm-heading); font-size: 2rem; margin: .25rem 0 .75rem; }
.card-title a, .feature-title a { color: inherit; }
.card-excerpt, .feature-excerpt { color: var(--vocesptm-muted); margin: 0 0 .75rem; font-size: .95rem; }
.card-meta, .feature-meta { color: var(--vocesptm-muted); font-size: .8rem; display: flex; gap: .75rem; }

/* ---------- Single ---------- */
.single-article { background: #fff; border-radius: var(--vocesptm-radius); padding: 0; }
.entry-header { margin-bottom: 1.5rem; }
.entry-title { font-family: var(--vocesptm-heading); font-size: 2.6rem; line-height: 1.1; margin: .5rem 0; }
.entry-meta { color: var(--vocesptm-muted); font-size: .9rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.entry-meta a { color: inherit; }
.entry-thumbnail { margin: 1rem 0 1.5rem; border-radius: var(--vocesptm-radius); overflow: hidden; }
.entry-content { font-size: 1.05rem; }
.entry-content p { margin: 0 0 1.1rem; }
.entry-content img { border-radius: 8px; }
.entry-content blockquote { border-left: 4px solid var(--vocesptm-primary); margin: 1.5rem 0; padding: .5rem 1.2rem; background: var(--vocesptm-surface); border-radius: 0 8px 8px 0; }

.entry-tags { margin-top: 2rem; font-size: .9rem; color: var(--vocesptm-muted); }
.entry-tags a { background: var(--vocesptm-surface); padding: 3px 8px; border-radius: 4px; margin: 0 4px; }

/* ---------- Pagination ---------- */
.pagination, .post-navigation, .comments-navigation { margin: 2rem 0; }
.nav-links { display: flex; gap: .25rem; flex-wrap: wrap; }
.page-numbers {
    display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 .75rem; border: 1px solid var(--vocesptm-border); border-radius: 8px; background: #fff; color: inherit;
}
.page-numbers.current, .page-numbers:hover { background: var(--vocesptm-primary); color: #fff; border-color: var(--vocesptm-primary); text-decoration: none; }

.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.post-navigation .nav-subtitle { display: block; color: var(--vocesptm-muted); font-size: .8rem; }
.post-navigation .nav-title { font-weight: 600; }

/* ---------- Sidebar ---------- */
.widget-area { display: flex; flex-direction: column; gap: 1.25rem; }
.widget { background: #fff; border: 1px solid var(--vocesptm-border); border-radius: var(--vocesptm-radius); padding: 1rem 1.25rem; }
.widget-title { font-family: var(--vocesptm-heading); font-size: 1.1rem; margin: 0 0 .75rem; padding-bottom: .5rem; border-bottom: 2px solid var(--vocesptm-primary); display: inline-block; }
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget li { padding: .35rem 0; border-bottom: 1px dashed var(--vocesptm-border); }
.widget li:last-child { border-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #0b0f14; color: #d1d5db; margin-top: 3rem; }
.footer-widgets { padding: 3rem 0 1.5rem; }
.footer-widgets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.footer-widgets .widget { background: transparent; border: 0; padding: 0; }
.footer-widgets .widget-title { color: #fff; border-color: var(--vocesptm-primary); }
.footer-widgets a { color: #d1d5db; }
.footer-widgets a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .85rem; }
.footer-menu { list-style: none; padding: 0; margin: 0; display: flex; gap: 1rem; }
.footer-menu a { color: inherit; }

/* ---------- CPT Programa ---------- */
.single-programa .programa-header,
.single-programa-radial .programa-header { margin-bottom: 1.5rem; }
.badge-destacado { display: inline-block; background: var(--vocesptm-accent); color: #fff; padding: 3px 10px; border-radius: 4px; text-transform: uppercase; font-size: 11px; font-weight: 700; letter-spacing: .5px; }
.programa-horario, .programa-dias { color: var(--vocesptm-muted); margin: .25rem 0; }

/* ---------- CPT Locutor ---------- */
.locutor-hero { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; align-items: center; margin-bottom: 2rem; }
.locutor-avatar img { width: 220px; height: 220px; object-fit: cover; border-radius: 50%; border: 4px solid var(--vocesptm-primary); }
.locutor-cargo { color: var(--vocesptm-muted); font-size: 1.05rem; }
.locutor-social { list-style: none; padding: 0; display: flex; gap: .5rem; flex-wrap: wrap; }
.locutor-social a { display: inline-block; background: var(--vocesptm-surface); padding: .35rem .8rem; border-radius: 999px; color: inherit; }
.locutor-social a:hover { background: var(--vocesptm-primary); color: #fff; text-decoration: none; }
@media (max-width: 700px) {
    .locutor-hero { grid-template-columns: 1fr; text-align: center; }
    .locutor-avatar img { margin: 0 auto; }
    .locutor-social { justify-content: center; }
}

/* ---------- 404 ---------- */
.error-404 { text-align: center; padding: 4rem 0; }
.big-404 { font-family: var(--vocesptm-heading); font-size: 8rem; margin: 0; color: var(--vocesptm-primary); line-height: 1; }

/* ---------- Body with sticky player offset ---------- */
.has-sticky-player { padding-bottom: 110px; }
.has-sticky-player .vocesptm-sticky-player {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
    background: #0b0f14; color: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    padding: .5rem 1rem;
    transition: box-shadow .3s ease;
}

/* Resaltado al pulsar "EN VIVO" en el menú */
.vocesptm-sticky-player.vocesptm-player-flash {
    animation: vocesptm-player-flash 1.4s ease;
}
@keyframes vocesptm-player-flash {
    0%, 100% { box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }
    20%, 60% { box-shadow: 0 -2px 28px 4px var(--vocesptm-accent); }
}

/* Botón flotante "Volver al EN VIVO" (aparece al sonar una canción del Top Musical) */
.vocesptm-back-to-live {
    position: absolute; right: 16px; top: -46px;
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--vocesptm-accent); color: #fff; border: 0;
    border-radius: 999px; padding: .55rem 1.1rem;
    font-family: var(--vocesptm-font);
    font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px;
    cursor: pointer; box-shadow: 0 6px 20px rgba(0,0,0,.3);
    animation: vocesptm-btl-in .25s ease;
}
.vocesptm-back-to-live[hidden] { display: none; }
.vocesptm-back-to-live:hover { background: color-mix(in srgb, var(--vocesptm-accent) 85%, #000); }
.vocesptm-back-to-live .vbl-dot {
    width: 9px; height: 9px; border-radius: 50%; background: #fff;
    box-shadow: 0 0 0 0 rgba(255,255,255,.7);
    animation: vocesptm-live-pulse 1.4s infinite;
}
@keyframes vocesptm-btl-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 600px) {
    .vocesptm-back-to-live { right: 10px; top: -42px; font-size: 11.5px; padding: .45rem .85rem; }
}

/* ---------- Comments ---------- */
.comments-area { margin-top: 2rem; background: #fff; padding: 1.5rem; border-radius: var(--vocesptm-radius); border: 1px solid var(--vocesptm-border); }
.comments-title { font-family: var(--vocesptm-heading); }
.comment-list { list-style: none; padding: 0; }
.comment-body { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--vocesptm-border); }
.comment-author img { border-radius: 50%; }
.children { list-style: none; padding-left: 2rem; }

/* ---------- Page header ---------- */
.page-header { padding: 1.5rem 0; border-bottom: 2px solid var(--vocesptm-border); margin-bottom: 1.5rem; }
.page-title { font-size: 2rem; }
.archive-header { background: var(--vocesptm-surface); padding: 2rem; border-radius: var(--vocesptm-radius); border: 0; margin-bottom: 2rem; }

/* ---------- Hero banner ---------- */
.vocesptm-hero {
    position: relative;
    min-height: var(--hero-height, 560px);
    background-color: #0b0f14;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 2rem;
}
.vocesptm-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,calc(var(--hero-overlay, .55) + .15)) 0%, rgba(0,0,0,var(--hero-overlay, .55)) 100%);
    z-index: 1;
}
.vocesptm-hero-inner {
    position: relative;
    z-index: 2;
    padding: 3rem 1.25rem;
    max-width: 760px;
}
.vocesptm-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(6px);
    padding: .35rem .85rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,.15);
}
.hero-live-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--vocesptm-accent, #f70d28);
    box-shadow: 0 0 0 4px rgba(247,13,40,.25);
    animation: hero-blink 1.4s infinite;
}
.hero-freq {
    background: var(--vocesptm-primary, #0c8ae9);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: .7rem;
}
@keyframes hero-blink { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.vocesptm-hero-title {
    font-family: var(--vocesptm-heading);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin: 0 0 1rem;
    color: #fff;
    text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.vocesptm-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,.85);
    margin: 0 0 1.75rem;
    max-width: 640px;
    line-height: 1.5;
}
.vocesptm-hero-ctas {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}
.vocesptm-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: transform .15s, box-shadow .15s, background .15s;
    border: 2px solid transparent;
}
.vocesptm-hero-cta-primary {
    background: var(--vocesptm-accent, #f70d28);
    color: #fff;
}
.vocesptm-hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247,13,40,.35);
    text-decoration: none;
    color: #fff;
}
.vocesptm-hero-cta-secondary {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-color: rgba(255,255,255,.4);
    backdrop-filter: blur(6px);
}
.vocesptm-hero-cta-secondary:hover {
    background: #fff;
    color: #0b0f14;
    text-decoration: none;
}
@media (max-width: 600px) {
    .vocesptm-hero { min-height: 420px; }
    .vocesptm-hero-inner { padding: 2rem 1.25rem; }
}

/* ---------- Sección Interactúa (3 columnas: Facebook · Chat · Solicitud) ---------- */
.vocesptm-interactua { padding: 2.75rem 0; background: var(--vocesptm-surface); border-top: 1px solid var(--vocesptm-border); }
.vocesptm-interactua .vptm-int-heading {
    text-align: center; font-family: var(--vocesptm-heading); font-size: 2rem; margin: 0 0 1.75rem; letter-spacing: .5px;
}
.vptm-int-grid {
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}
.vptm-int-col {
    background: #fff; border: 1px solid var(--vocesptm-border);
    border-radius: var(--vocesptm-radius); overflow: hidden;
    box-shadow: var(--vocesptm-shadow); display: flex; flex-direction: column;
}
.vptm-int-col__head {
    display: flex; align-items: center; gap: .6rem;
    padding: .9rem 1.1rem; color: #fff; font-family: var(--vocesptm-heading);
    font-size: 1.3rem; letter-spacing: .4px;
}
.vptm-int-col__head svg { flex: 0 0 auto; }
.vptm-int-fb   .vptm-int-col__head { background: #1877f2; }
.vptm-int-chat .vptm-int-col__head { background: var(--vocesptm-primary); }
.vptm-int-req  .vptm-int-col__head { background: var(--vocesptm-accent); }
.vptm-int-col__body { padding: 1.1rem; flex: 1; }
.vptm-int-fb .vptm-int-col__body,
.vptm-int-chat .vptm-int-col__body { padding: 0; }

/* Facebook / Chat embeds */
.vptm-int-fb iframe { display: block; width: 100% !important; border: 0; min-height: 500px; background: #fff; }
.vptm-int-chat__embed { min-height: 500px; }
.vptm-int-chat__embed iframe { display: block; width: 100% !important; border: 0; min-height: 500px; }

/* Formulario WhatsApp */
.vocesptm-wa-form { display: flex; flex-direction: column; gap: .85rem; }
.vocesptm-wa-intro { margin: 0 0 .25rem; color: var(--vocesptm-muted); font-size: .92rem; }
.vocesptm-wa-field { display: flex; flex-direction: column; gap: .35rem; }
.vocesptm-wa-field label { font-size: .82rem; font-weight: 600; }
.vocesptm-wa-field input {
    width: 100%; padding: .7rem .8rem; border: 1px solid var(--vocesptm-border);
    border-radius: 9px; font-family: var(--vocesptm-font); font-size: 15px; background: var(--vocesptm-surface);
}
.vocesptm-wa-field input:focus {
    outline: none; border-color: #25d366; background: #fff;
    box-shadow: 0 0 0 3px rgba(37,211,102,.2);
}
.vocesptm-wa-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    margin-top: .25rem; padding: .85rem 1rem; border-radius: 999px;
    background: #25d366; color: #fff; font-weight: 700; font-size: 15px;
    text-transform: uppercase; letter-spacing: .5px; text-decoration: none;
    transition: background .2s ease, transform .15s ease;
}
.vocesptm-wa-btn:hover { background: #1ebe5b; color: #fff; text-decoration: none; transform: translateY(-1px); }
.vocesptm-wa-btn svg { flex: 0 0 auto; }
.vocesptm-wa-feedback { margin: .2rem 0 0; font-size: .85rem; color: var(--vocesptm-accent); min-height: 1em; }

@media (max-width: 600px) {
    .vocesptm-interactua { padding: 2rem 0; }
    .vocesptm-interactua .vptm-int-heading { font-size: 1.6rem; }
}

/* ---------- Utilities ---------- */
.elementor-full-width { width: 100%; }
