@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&family=Bebas+Neue&display=swap');

:root {
    --bg: #f6f9f8;
    --surface: rgba(255, 244, 236, 0.94);
    --primary: rgba(236, 104, 27, 1);
    --primary-dark: rgba(210, 85, 2, 1);
    --accent: rgba(236, 104, 27, 1);
    --text: #ffffff;
    --muted: #617276;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    --radius: 18px;
    --max-width: 1100px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background-color: #f16215c0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.404), rgba(0, 0, 0, 0.411)),
        url('../multimedia/imagenes/fondoComoVotar.webp'),
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 22%, transparent 46%),
        radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 24%, transparent 48%),
        radial-gradient(circle at 68% 78%, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.06) 22%, transparent 46%),
        radial-gradient(circle at 18% 82%, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.04) 18%, transparent 38%),
        linear-gradient(125deg, rgba(255, 204, 153, 0.18) 0%, rgba(255, 255, 255, 0.04) 30%, rgba(0, 0, 0, 0.08) 55%, rgba(255, 255, 255, 0.12) 78%, rgba(0, 0, 0, 0.06) 100%),
        linear-gradient(205deg, rgba(255, 255, 255, 0.08) 12px, transparent 12px),
        linear-gradient(25deg, rgba(0, 0, 0, 0.05) 10px, transparent 10px);
    background-size: cover, cover, auto, auto, auto, auto, auto, 34px 34px, 44px 44px;
    background-position: center, center, 12% 18%, 78% 14%, 68% 78%, 18% 82%, center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat;
    background-attachment: fixed;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 0;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)),
        url('../multimedia/imagenes/fondoComoVotar.webp'),
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 22%, transparent 46%),
        radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 24%, transparent 48%),
        radial-gradient(circle at 68% 78%, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.06) 22%, transparent 46%),
        radial-gradient(circle at 18% 82%, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.04) 18%, transparent 38%),
        linear-gradient(125deg, rgba(255, 204, 153, 0.18) 0%, rgba(255, 255, 255, 0.04) 30%, rgba(0, 0, 0, 0.08) 55%, rgba(255, 255, 255, 0.12) 78%, rgba(0, 0, 0, 0.06) 100%),
        linear-gradient(205deg, rgba(255, 255, 255, 0.08) 12px, transparent 12px),
        linear-gradient(25deg, rgba(0, 0, 0, 0.05) 10px, transparent 10px);
    background-size: cover, cover, auto, auto, auto, auto, auto, 34px 34px, 44px 44px;
    background-position: center, center, 12% 18%, 78% 14%, 68% 78%, 18% 82%, center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat;
    background-attachment: fixed;
    filter: blur(8px);
    transform: scale(1.02);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 900px) {
    body {
        background-attachment: scroll;
        background-size: cover, cover, auto, auto, auto, auto, auto, 34px 34px, 44px 44px;
    }
}

body.nav-open {
    overflow: hidden;
}

body.nav-open>*:not(header) {
    filter: blur(10px) brightness(0.9);
    transition: filter 0.2s ease;
}

body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 60;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.35);
}

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

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1,
h2,
h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.4px;
}

h1 {
    font-size: clamp(48px, 6vw, 70px);
    margin: 0 0 16px;
}

h2 {
    font-size: clamp(36px, 5vw, 52px);
    margin: 0 0 14px;
}

h3 {
    font-size: clamp(20px, 3vw, 26px);
    margin: 6px 0 10px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    backdrop-filter: blur(10px);
}

.navbar {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #fff;
    text-align: left;
    position: relative;
    z-index: 200;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 999px;
}

.brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.8px;
    color: inherit;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 210;
}

.brand-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 75px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.836));
}

.burst-container {
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 200;
}

.burst-dot {
    position: absolute;
    top: 0;
    left: 0;
    background: #ed671d;
    border-radius: 50%;
    opacity: 0.9;
    animation: burst 0.8s ease-out forwards;
}

@keyframes navDrop {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes burst {
    0% {
        transform: translate(0, 0) scale(0.4);
        opacity: 1;
    }

    80% {
        transform: translate(var(--tx), var(--ty)) scale(1);
        opacity: 0.9;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0.4);
        opacity: 0;
    }
}


.nav-links {
    display: flex;
    gap: 18px;
    font-weight: 600;
    font-size: 18px;
    color: inherit;
    text-align: left;
}

.nav-links a {
    padding: 10px 12px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
    color: inherit;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.nav-close {
    display: none;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: inherit;
}

.button-primary,
.button-ghost,
.kicker,
.badge,
.news a {
    text-decoration: none;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 120px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: transparent;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(237, 103, 29, 0.24) 0%, rgba(0, 0, 0, 0.62) 100%);
    z-index: 1;
}

.slogan-overlay {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.slogan-overlay img {
    width: clamp(140px, 28vw, 240px);
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}

.slogan-text {
    font-family: 'Bebas Neue', Georgia, 'Times New Roman', Times, serif;
    letter-spacing: 1.4px;
    font-size: clamp(22px, 4vw, 32px);
    color: #fefefe;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    animation: pulseSoft 2.5s ease-in-out infinite;
}

.slogan-subimg {
    width: clamp(120px, 40vw, 180px);
}

.slogan-subimg {
    width: clamp(140px, 32vw, 240px);
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
    animation: pulseSoft 2.4s ease-in-out infinite;
}

@keyframes pulseSoft {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.hero-text {
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(236, 104, 27, 0.15);
    color: var(--primary-dark);
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-size: 12px;
}

.hero .kicker {
    background: rgba(255, 255, 255, 0.18);
    color: #f4fff9;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.6px;
    font-size: clamp(36px, 5vw, 52px);
    margin: 14px 0 12px;
    line-height: 1.15;
}

.hero p {
    color: #e8f5ef;
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 22px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.button-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 14px 30px rgba(236, 104, 27, 0.22);
}

.button-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(210, 85, 2, 0.28);
}

.button-ghost {
    background: transparent;
    color: var(--primary-dark);
    padding: 12px 16px;
    border: 1px solid rgba(236, 104, 27, 0.28);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: border 0.2s ease, color 0.2s ease;
}

.button-ghost:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.hero .button-ghost {
    color: #f4fff9;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero .button-ghost:hover {
    border-color: #fff;
    color: #fff;
}

.video-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 20px;
    scroll-margin-top: 140px;
}

.section-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section h2 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.6px;
    font-size: clamp(32px, 4vw, 46px);
    margin-bottom: 16px;
}

#quien-soy {
    position: relative;
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 90px 20px 50px;
    overflow: hidden;
}

#quien-soy::before {
    content: none;
}

#quien-soy>* {
    position: relative;
    z-index: 1;
}

#quien-soy .section-header {
    color: #ffffff;
}

#quien-soy .section-header .lead {
    color: #e8f5ef;
}

#noticias h1,
#noticias h2 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 70px);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.32);
    margin-bottom: 10px;
}

#noticias {
    position: relative;
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 90px 20px;
    overflow: hidden;
}

#noticias::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../multimedia/imagenes/fondoNoticias.webp') center center / cover no-repeat;
    z-index: 0;
}

#noticias>* {
    position: relative;
    z-index: 1;
}

#noticias .lead {
    text-align: center;
    margin: 0 auto 28px;
}

.section p.lead {
    color: var(--muted);
    margin-bottom: 34px;
    max-width: 720px;
}

.section-header {
    text-align: center;
    margin-bottom: 28px;
}

.section-header .kicker {
    background: rgb(236, 104, 27);
    color: var(--primary-dark);
}

.section-header1 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 70px);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.32);
    margin-bottom: 10px;
}

.who-slider {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 18px;
    width: min(1100px, 100%);
    height: 540px;
    min-height: 480px;
    aspect-ratio: 16 / 9;
    display: grid;
    align-items: center;
    justify-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.123);
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.12), transparent 46%),
        rgba(0, 0, 0, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.32);
    outline: 1px solid rgba(0, 0, 0, 0.151);
}

.who-slide {
    position: absolute;
    inset: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border-radius: inherit;
    overflow: hidden;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.who-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.who-slide::after {
    content: none;
}

.who-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.who-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(236, 104, 27, 0.22);
    color: #ffd8c1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-size: 12px;
}

.who-slide h3 {
    margin: 0;
    font-size: clamp(28px, 3.8vw, 42px);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.who-slide p {
    margin: 0;
    padding: 4px;
    color: #e5f4ef;

    .who-slide {
        inset: 4px;
    }

    font-size: 16px;
    line-height: 1.6;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(224, 110, 17, 0.541);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.06);
    background: rgba(0, 0, 0, 0.904);
    border-color: rgba(255, 255, 255, 0.89);
}

.slider-btn.prev {
    left: 14px;
}

.slider-btn.next {
    right: 14px;
}

.who-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 14px auto 0;
}

.who-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.who-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.who-slider:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 6px;
}

.who-summary {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    max-width: var(--max-width);
    margin: 28px auto 0;
    text-align: justify;
    color: white;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.52);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(3px);
}

.who-summaryL {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    max-width: var(--max-width);
    margin: 0 auto 34px;
    text-align: justify;
    color: rgb(255, 255, 255);
    font-size: 18px;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.52);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(3px);
}

.about {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: center;
}

.portrait {
    background: linear-gradient(145deg, rgba(236, 104, 27, 0.9), rgba(210, 85, 2, 0.9));
    border-radius: var(--radius);
    min-height: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px;
    color: #eafff3;
}

.portrait::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.portrait span {
    font-weight: 700;
    z-index: 1;
    letter-spacing: 1px;
}

.proposals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.propuestas-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.propuestas-img-wrapper img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

#propuestas {
    position: relative;
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px 80px;
    overflow: hidden;
}

#propuestas::before {
    content: none;
}

.card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.card h3 {
    margin: 10px 0 8px;
    font-size: 18px;
}

.card p {
    color: var(--muted);
    font-size: 15px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(236, 104, 27, 0.14);
    color: var(--primary-dark);
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.step {
    background: var(--surface);
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow);
}

.step strong {
    color: var(--primary-dark);
    display: block;
    margin-bottom: 6px;
}

#como-votar {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    background: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 500px;
}

.vote-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vote-img {
    width: 70vw;
    max-width: 860px;
    min-width: 360px;
    height: auto;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    border-radius: 12px;
    border: 10px solid #d25502;
}

.phone-video-card {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-106%, -44%);
    width: clamp(200px, 30vw, 320px);
    aspect-ratio: 8 / 15;
    padding: 5px;
    border-radius: 22px;
    background: radial-gradient(circle at 40% 40%, rgba(0, 0, 0, 0.719), rgba(0, 0, 0, 0.719));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.08);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    z-index: 2;
}

.phone-frame::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.news {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 244, 236, 0.95) 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(210, 85, 2, 0.12);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-media {
    position: relative;
    padding-bottom: 56.25%;
    background: #000;
}

.news-media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.news-body {
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news time {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.2px;
}

.news h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
}

.news p {
    color: #3b4447;
    margin: 0;
    font-size: 15px;
}

.footer {
    text-align: center;
    padding: 36px 20px 56px;
    color: var(--muted);
    font-size: 14px;
}


.whatsapp-btn {
    position: relative;
    background: #25d366;
    color: #fff;
    width: 64px;
    height: 64px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
    z-index: 20;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    text-decoration: none;
    overflow: visible;
}

.whatsapp-wrap {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.whatsapp-label {
    position: absolute;
    top: -44px;
    left: 50%;
    transform: translate(-50%, 0);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    animation: floatLabel 2.2s ease-in-out infinite;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    pointer-events: none;
}

@keyframes floatLabel {
    0% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -6px);
    }

    100% {
        transform: translate(-50%, 0);
    }
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.28);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

@media (max-width: 900px) {

    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 80;
        backdrop-filter: blur(10px);
    }

    .hero-grid,
    .about {
        grid-template-columns: 1fr;
    }

    .who-slider {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
        margin: 0 auto;
        transform: none;
        padding: 2px;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .navbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 18px;
        font-size: 18px;
        background: rgba(0, 0, 0, 0.144);
        backdrop-filter: blur(18px);
        padding: 24px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.25s ease, transform 0.25s ease;
        z-index: 130;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        animation: navSlideDown 0.32s cubic-bezier(0.22, 0.7, 0.4, 1);
    }

    .nav-links a {
        width: auto;
        text-align: center;
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(20px, 8vw, 30px);
        font-weight: 800;
        letter-spacing: 0.8px;
        color: #ffffff;
        text-shadow: 1px 8px 26px rgb(0, 0, 0);
        margin-bottom: 10px;
    }

    .nav-close {
        display: inline-flex;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(0, 0, 0, 0.35);
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .nav-close:hover {
        transform: scale(1.05);
        background: rgba(0, 0, 0, 0.55);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .nav-toggle {
        display: flex;
    }

    .section {
        padding: 64px 16px;
        scroll-margin-top: 140px;
    }

    .hero {
        margin-top: 110px;
        padding-top: 0;
    }

    .slogan-overlay {
        bottom: 18px;
        gap: 6px;
    }

    .slogan-overlay img {
        width: clamp(130px, 45vw, 180px);
    }

    .slogan-text {
        font-size: clamp(18px, 4.4vw, 26px);
    }

    #como-votar {
        min-height: 460px;
        padding: 50px 0;
    }

    .phone-video-card {


        .slogan-subimg {
            width: clamp(100px, 48vw, 150px);
        }

        width: clamp(220px, 60vw, 340px);
        top: 52%;
    }
}

@media (max-width: 560px) {
    .hero {
        min-height: auto;
        padding: 0%;
    }

    .slogan-overlay {
        bottom: 10px;
        gap: 4px;
    }

    .slogan-overlay img {
        width: clamp(50px, 50vw, 80px);
    }

    .slogan-text {
        font-size: clamp(8px, 5vw, 10px);
    }

    /* Mantiene proporción y evita recorte en móvil */
    .hero-video {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: contain;
    }

    .whatsapp-btn {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-label {
        top: -36px;
        font-size: 10px;
        padding: 5px 9px;
    }

    #como-votar {
        aspect-ratio: auto;
        min-height: 420px;
    }

    .phone-video-card {
        width: 35vw;
        max-width: 340px;
        top: 52%;
    }

    .vote-img {
        width: 90vw;
        max-width: 100%;
    }

    .propuestas-img-wrapper {
        padding: 0;
    }

    .propuestas-img-wrapper img {
        max-width: 100%;
        border-radius: 12px;
    }

    .who-slide {
        padding: 22px;
    }

    .who-slide h3 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .who-slide p {
        font-size: 15px;
    }

    .news-media {
        padding-bottom: 56.25%;
    }
}