* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f8fc;
} 
/* login */
.logo{
    text-align:center;
    margin-bottom:25px;
}

.logo img{
    width:140px;
    height:auto;
    margin-bottom:10px;
}

.logo h1{
    color:#0b2c5d;
    font-size:32px;
    margin-bottom:5px;
}

.logo p{
    color:#666;
    font-size:18px;
}
/* HEADER */

.top-header {
    background: #0b2c5d;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container h1 {
    font-size: 42px;
}

.top-links a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
}

/* NOTICIAS */

.news-item h2{
 background:white;
    border-radius:15px;
    padding:25px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.resumen{
    font-size:28px;
    line-height:1.6;
    color:#555;
    margin-bottom:20px;
}

.btn-noticia{
    display:inline-block;
    background:#0b2c5d;
    color:white;
    text-decoration:none;
    padding:12px 20px;
    border-radius:8px;
    font-weight:bold;
    margin-top:10px;
}

.btn-noticia:hover{
    background:#1e4d8f;
}

/* MENÚ */

.main-nav {
    background: #1e4d8f;
    padding: 15px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 35px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* SECCIÓN PRINCIPAL */

.principal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 50px;
}

/* CARRUSEL */

.carousel {
    width: 60%;
    height: 350px;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* BOTONES DEL CARRUSEL */

.carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 15px;
    pointer-events: none;
}

.carousel-buttons button {
    pointer-events: all;
    background: rgba(11, 44, 93, 0.8);
    color: white;
    border: none;
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-buttons button:hover {
    background: #0b2c5d;
}

/* NOTICIAS */

.hero-right {
    width: 38%;
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.hero-right h3 {
    color: #0b2c5d;
    font-size: 36px;
    margin-bottom: 25px;
}

.news-item {
    margin-bottom: 25px;
}

.news-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
}

.news-item p {
    color: #666;
    font-size: 18px;
}

/* PLAN DE DESARROLLO */

.hero {
    padding: 50px;
}

.hero-left h2 {
    font-size: 48px;
    color: #111;
    margin-bottom: 15px;
}

.hero-left p {
    font-size: 24px;
    margin-bottom: 20px;
}

.hero-left button {
    background: #0b2c5d;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.hero-left button:hover {
    background: #163d78;
}

/* SECCIÓN EN VIVO + DIRECTORIO */

.seccion-vivo-directorio {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    padding: 60px 50px;
}

/* DIRECTORIO */

.directorio-triangulo {
    width: 60%;
}

.directorio-triangulo h2 {
    font-size: 42px;
    color: #0b2c5d;
    margin-bottom: 40px;
}

/* MUNICIPAL ARRIBA */

.fila-superior {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

/* ESTATAL + NACIONAL ABAJO */

.fila-inferior {
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* TARJETAS */

.directorio-card {
    background: white;
    width: 320px;
    padding: 40px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.directorio-card:hover {
    transform: translateY(-8px);
}

.directorio-card h3 {
    color: #7a0c0c;
    font-size: 28px;
    margin-bottom: 15px;
}

.directorio-card p {
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

.directorio-card a {
    text-decoration: none;
    color: #0b2c5d;
    font-weight: bold;
    font-size: 18px;
}

/* EN VIVO */

.mini-transmision {
    width: 35%;
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.mini-transmision h3 {
    font-size: 42px;
    color: #0b2c5d;
    margin-bottom: 20px;
}

.mini-video {
    margin-bottom: 20px;
}

.mini-video iframe {
    width: 100%;
    border-radius: 10px;
}

.mini-transmision p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn-vivo-mini {
    display: inline-block;
    background: #0b2c5d;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn-vivo-mini:hover {
    background: #163d78;
}

/* FOOTER */

.footer {
    background: #0b2c5d;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 60px;
    font-size: 16px;
}

.news-item .btn-noticia{
    display:inline-block;
    background:#0b2c5d;
    color:#fff;
    text-decoration:none;
    padding:12px 20px;
    border-radius:8px;
    font-weight:bold;
}

.news-item .btn-noticia:hover{
    background:#1e4d8f;
    color:#fff;
}
/* FACEBOOK DEBAJO DE NOTICIAS */
.hero-right .facebook-mini{
    margin-top: 40px;
    background: #f8f9fc;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    border-left: 6px solid #0b2c5d;
}

.facebook-mini h3{
    color:#0b2c5d;
    font-size:28px;
    margin-bottom:20px;
}

.facebook-mini p{
    font-size:18px;
    color:#555;
    margin-bottom:20px;
}

.facebook-box iframe{
    width:100%;
    height:500px;
    border:none;
    border-radius:12px;
}
/* ============================= */
/* VERSIÓN MÓVIL */
/* ============================= */

@media (max-width: 768px) {

    /* Encabezado */
    .top-header {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .logo-container h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .top-links {
        display: flex;
        gap: 15px;
    }

    .top-links a {
        margin: 0;
        font-size: 16px;
    }

    /* Menú */
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Carrusel + noticias */
    .principal {
        flex-direction: column;
        padding: 20px;
    }

    .carousel {
        width: 100%;
        height: 250px;
    }

    .slide img {
        object-fit: contain;
    }

    .hero-right {
        width: 100%;
        margin-top: 20px;
        padding: 20px;
    }

    .hero-right h3 {
        font-size: 32px;
    }

    .news-item h2 {
        font-size: 24px;
        padding: 0;
        box-shadow: none;
        background: transparent;
    }

    .resumen {
        font-size: 18px;
    }

    .btn-noticia {
        width: 100%;
        text-align: center;
    }



    /* Directorio y transmisión */
    .seccion-vivo-directorio {
        flex-direction: column;
        padding: 25px;
    }

    .directorio-triangulo,
    .mini-transmision {
        width: 100%;
    }

    .directorio-triangulo h2,
    .mini-transmision h3 {
        font-size: 32px;
        text-align: center;
    }

    .fila-inferior {
        flex-direction: column;
        align-items: center;
    }

    .directorio-card {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Footer */
    .footer {
        font-size: 14px;
        padding: 20px;
    }
}
    