:root {
    --color-celeste: #38b6ff;
    --color-celeste-dark: #1a9fe8;
    --color-verde: #00bf63;
    --color-verde-dark: #00a855;
    --color-dark: #0f172a;
    --color-darker: #020617;
    --color-light: #f8fafc;
    --color-white: #ffffff;
    --color-gray: #64748b;
    
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-dark);
    background-color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('LISTA_20260727_122335_0000.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35; /* Increased opacity to make background logo much more visible */
    z-index: -2;
    pointer-events: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-celeste { color: var(--color-celeste) !important; }
.text-verde { color: var(--color-verde) !important; }
.text-white { color: var(--color-white); }
.highlight-verde {
    color: var(--color-verde);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}
.mb-4 { margin-bottom: 1.5rem; }
.mb-6 { margin-bottom: 3rem; }

.section {
    padding: 5rem 0;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.section-title p {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.bg-light { background-color: rgba(248, 250, 252, 0.15); } /* Reduced background opacity to let watermark shine through */
.bg-dark { background-color: var(--color-dark); }
.bg-black { background-color: var(--color-darker); }
.bg-gradient {
    background: linear-gradient(135deg, var(--color-celeste-dark) 0%, var(--color-dark) 100%);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-darker);
    /* In a real scenario, use a background image here */
    background-image: url('fondo.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 2rem;
    align-items: center;
    text-align: left;
}

.hero-text {
    /* Container for text elements */
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 800px;
    margin: 0 0 2.5rem 0;
    color: #e2e8f0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-candidatas-img {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-celeste);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
}

.btn-primary:hover {
    background-color: var(--color-celeste-dark);
    transform: translateY(-2px);
}

.btn-verde-glow {
    background-color: var(--color-verde);
    color: var(--color-darker);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
    width: 100%;
}

.btn-verde-glow:hover {
    background-color: var(--color-verde-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.7);
}

/* Candidatos Section */
.search-container {
    max-width: 500px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 15px;
    color: var(--color-text-light);
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 30px;
    border: 2px solid rgba(0,0,0,0.1);
    background-color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition);
    color: var(--color-dark);
}

.search-input:focus {
    border-color: var(--color-celeste);
    box-shadow: 0 0 15px rgba(0, 163, 224, 0.2);
    outline: none;
}

.candidatos-tier {
    margin-bottom: 3rem;
}

.tier-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.candidatas-grid {
    display: grid;
    gap: 2rem;
}

/* Grilla Conduccion (Top Tier) */
.top-tier {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

/* Grilla Nivel 1 */
.nivel1-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Grilla Nivel 2 */
.nivel2-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Grilla Otras Secretarías (Nivel 3 - Más chicas) */
.otras-secretarias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .otras-secretarias-grid {
        grid-template-columns: repeat(6, 1fr); /* Force 6 columns on desktop for 3 and 3 pair layout */
    }
}

/* Grilla uniforme — página candidatos.html (todas fotos iguales) */
.candidatos-uniforme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.candidatos-uniforme-grid .candidato-card {
    background: #fff;
    border-radius: 16px;
    padding: 0 0 1rem 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.candidatos-uniforme-grid .candidato-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(56,182,255,0.2);
}

.candidatos-uniforme-grid .candidata-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top;
    border-radius: 16px 16px 0 0;
    display: block;
}

.candidatos-uniforme-grid .candidato-info {
    padding: 0.6rem 0.75rem 0;
}

.candidatos-uniforme-grid .candidato-puesto {
    font-size: 0.82rem;
}

@media (max-width: 600px) {
    .candidatos-uniforme-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .candidatos-uniforme-grid .candidata-img {
        height: 220px;
    }
}

.candidato-card {
    background: transparent;
    border-radius: 12px;
    padding: 0 0 1rem 0; /* Add bottom padding for text spacing */
    text-align: center;
    transition: var(--transition);
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}

.candidato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Las primeras fotos subidas mantienen su tamaño grande */
.candidato-card:not(.mini-card) .candidata-img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}

/* Las nuevas fotos de abajo se muestran más chicas */
.mini-card {
    padding: 0 0 0.8rem 0;
}

.mini-card .candidata-img {
    max-width: 90%;
    margin: 0 auto;
}

.candidato-info {
    margin-top: 0.8rem;
    padding: 0 0.5rem;
}

.candidato-puesto {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.mini-card .candidato-puesto {
    font-size: 0.75rem;
}

.text-celeste {
    color: var(--color-celeste) !important;
}

.text-verde {
    color: var(--color-verde) !important;
}

.candidata-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

.candidata-socials {
    display: none;
}

/* Image Modal */
.img-modal-content {
    background: transparent;
    box-shadow: none;
    max-width: 90vw;
    text-align: center;
    padding: 0;
}

.modal-full-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.close-image-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.close-image-modal:hover {
    color: var(--color-verde);
}

.badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.badge-celeste { background-color: var(--color-celeste); color: white; }
.badge-verde { background-color: var(--color-verde); color: white; }
.badge-outline-celeste { border: 1px solid var(--color-celeste); color: var(--color-celeste); }
.badge-outline-verde { border: 1px solid var(--color-verde); color: var(--color-verde); }
.badge-outline-dark { border: 1px solid #666; color: #666; font-size: 0.7rem; }

.candidato-card h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.candidato-card h4 {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-top: 0.5rem;
}

.candidata-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
}

.sec-gen {
    /* Placeholder gradient, would be replaced by actual image */
    background: linear-gradient(45deg, var(--color-celeste), var(--color-verde));
}
.sec-adj {
    background: linear-gradient(45deg, var(--color-verde), var(--color-celeste));
}

.candidata-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 1.5rem;
    display: block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.candidata-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.candidata-card .cargo {
    color: var(--color-celeste-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.candidata-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-light);
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 10;
}

.social-icon:hover {
    background: linear-gradient(to right, var(--color-celeste) 50%, var(--color-verde) 50%);
    color: var(--color-darker);
    transform: translateY(-3px);
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.85); 
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: transparent;
    padding: 0;
    position: relative;
    width: 90%;
    max-width: 400px;
}

.close-modal {
    color: var(--color-white);
    position: absolute;
    top: -40px;
    right: 0px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover,
.close-modal:focus {
    color: var(--color-verde);
    text-decoration: none;
    cursor: pointer;
}

.clickable-card {
    cursor: pointer;
}
.clickable-card:hover .text-verde {
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

/* Propuestas */
.propuestas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.propuesta-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.propuesta-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--color-verde);
    transform: translateY(-5px);
}

.icon-celeste, .icon-verde {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.propuesta-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.propuesta-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* Fiscal Form & Video Split */
.fiscal-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.fiscal-video-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    background-color: var(--color-darker);
}

.fiscal-video {
    width: 100%;
    height: auto;
    display: block;
}

.form-container {
    width: 100%;
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.form-centered {
    max-width: 500px;
    margin: 0 auto;
}

.fiscal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fiscal-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: none;
    background: var(--color-white);
    font-family: var(--font-main);
    font-size: 1rem;
}

.fiscal-form input:focus {
    outline: 2px solid var(--color-verde);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    color: #94a3b8;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand h3 {
    margin-bottom: 1rem;
}

.footer h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--color-verde);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
}

/* Responsive Design (Mobile First adjustments) */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 5rem;
    }
    
    .hero h1, .hero-subtitle, .hero-actions, .hero-text {
        text-align: center;
    }
    
    .hero-candidatas-img {
        max-height: 45vh;
    }

    .hero-image {
        flex-direction: column;
    }

    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-darker);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.25rem;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .fiscal-split {
        grid-template-columns: 1fr;
    }
    
    /* Adjust grid columns to prevent images getting too small */
    .top-tier {
        grid-template-columns: 1fr;
    }
    .nivel1-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nivel2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .otras-secretarias-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet */
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nivel1-grid, .nivel2-grid {
        grid-template-columns: 1fr; /* Full width for Nivel 1 y 2 on small phones */
    }
    .otras-secretarias-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for the small cards */
        gap: 0.8rem;
    }
    .candidato-card:not(.mini-card) .candidata-img {
        max-height: 350px;
    }
    .mini-card .candidata-img {
        max-width: 100%; /* Use full width of the smaller column */
    }
}

/* Social Floating Container */
.social-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-float-btn {
    background-color: var(--color-primary);
    color: #FFF;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.social-float-btn:hover {
    transform: scale(1.1);
    color: #FFF;
}

.social-float-btn.fb-bg { background-color: #1877f2; }
.social-float-btn.wa-bg { background-color: #25d366; }
.social-float-btn.mail-bg { background-color: #ea4335; }

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@keyframes point-left {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

@keyframes point-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}
.social-float-btn.ig-bg { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-float-btn.x-bg { background-color: #000000; }

.social-float-icon {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.social-float-btn .tooltip {
    position: absolute;
    right: 70px;
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.social-float-btn:hover .tooltip {
    opacity: 1;
}

.candidatos-bg {
    position: relative;
    background-color: var(--color-darker);
    z-index: 0;
}

.candidatos-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('logo-fondo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.35;
    z-index: -1;
    pointer-events: none;
}

/* Blinking Button */
@keyframes blinkDual {
    0% { background-color: var(--color-celeste); box-shadow: 0 0 10px var(--color-celeste); }
    50% { background-color: var(--color-verde); box-shadow: 0 0 20px var(--color-verde); }
    100% { background-color: var(--color-celeste); box-shadow: 0 0 10px var(--color-celeste); }
}
.btn-blink {
    animation: blinkDual 1.5s infinite;
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 30px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}
.btn-blink:hover {
    animation-play-state: paused;
    transform: scale(1.05);
}

/* Color swap animations for PODÉS ELEGIR */
@keyframes colorSwapCeleste {
    0%, 100% { color: var(--color-celeste); text-shadow: 0 0 10px rgba(0, 180, 216, 0.5); }
    50% { color: var(--color-verde); text-shadow: 0 0 10px rgba(45, 201, 55, 0.5); }
}
@keyframes colorSwapVerde {
    0%, 100% { color: var(--color-verde); text-shadow: 0 0 10px rgba(45, 201, 55, 0.5); }
    50% { color: var(--color-celeste); text-shadow: 0 0 10px rgba(0, 180, 216, 0.5); }
}
.blink-celeste {
    animation: colorSwapCeleste 4s infinite ease-in-out;
    display: inline-block;
}
.blink-verde {
    animation: colorSwapVerde 4s infinite ease-in-out;
    display: inline-block;
}

/* Slow blink animation for buttons */
.btn-blink-slow {
    animation: blinkDual 4s infinite ease-in-out;
    color: #fff !important;
}
.btn-blink-slow:hover {
    animation-play-state: paused;
}


 
 
/* Slogan Under Hero Image */
.hero-image {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.slogan-under-image {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px; /* increased gap for clearer separation */
    width: 100%;
    max-width: 480px;
    z-index: 10;
}

.slogan-badge {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.1rem; /* increased for better proportion */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: skewX(-5deg); /* reduced skew for readability */
    padding: 10px 20px; /* more padding for balanced look */
    box-shadow: -2px 4px 10px rgba(0,0,0,0.3);
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.slogan-badge:hover {
    transform: skewX(-8deg) scale(1.03);
}

.bg-dark-brush {
    background-color: #111827;
    color: #ffffff;
    border-left: 4px solid var(--color-celeste);
}

.bg-celeste-brush {
    background-color: var(--color-celeste);
    color: #ffffff;
}

.bg-verde-brush {
    background-color: var(--color-verde);
    color: #ffffff;
}

@media (max-width: 768px) {
    .slogan-badge {
        font-size: 0.82rem;
        padding: 5px 10px;
    }
}


/* Fast Video Preview Cards */
.video-preview-card {
    width: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.video-preview-card:hover {
    transform: translateY(-5px) scale(1.02);
}
.video-poster-box {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.1);
}
.video-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
.video-preview-card:hover .video-poster-img {
    opacity: 1;
}
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 180, 216, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.6);
    transition: transform 0.3s ease, background 0.3s ease;
}
.video-preview-card:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(57, 255, 20, 0.95);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.8);
}
.play-icon {
    color: #fff;
    font-size: 1.8rem;
    margin-left: 4px;
}
.video-badge-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* =============================================
   BOTÓN BRILLANTE - "Conocé los demás candidatos"
   ============================================= */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(56, 182, 255, 0.5), 0 0 40px rgba(0, 191, 99, 0.3); }
    50% { box-shadow: 0 0 35px rgba(56, 182, 255, 0.8), 0 0 60px rgba(0, 191, 99, 0.5); }
}

.btn-candidatos-brillante {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
    background: linear-gradient(90deg, #38b6ff, #00bf63, #38b6ff, #00bf63);
    background-size: 300% auto;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    animation: shimmer 3s linear infinite, pulse-glow 2s ease-in-out infinite;
    transition: transform 0.2s ease, letter-spacing 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-candidatos-brillante::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(30deg);
    animation: shimmer 2.5s linear infinite;
    pointer-events: none;
}

.btn-candidatos-brillante:hover {
    transform: scale(1.05) translateY(-2px);
    letter-spacing: 1px;
    color: #fff;
}

.btn-brillante-icon {
    font-size: 1.3rem;
    animation: none;
}

.btn-brillante-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-candidatos-brillante:hover .btn-brillante-arrow {
    transform: translateX(6px);
}
