/* ===================================
   VARIABLES Y RESET
   =================================== */
:root {
    --verde-principal: #066635;
    --verde-oscuro: #044422;
    --verde-claro: #088844;
    --blanco: #FFFFFF;
    --negro: #000000;
    --gris-claro: #F5F5F5;
    --gris-medio: #CCCCCC;
    --gris-oscuro: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gris-oscuro);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   HEADER / NAVBAR
   =================================== */
.navbar {
    background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-oscuro) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 80px;
    width: auto;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blanco);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.menu-list li {
    position: relative;
}

.menu-list a {
    color: var(--blanco);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-list a:hover,
.menu-list a.active {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--blanco);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--gris-claro);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    color: var(--gris-oscuro);
    padding: 0.75rem 1.25rem;
    display: block;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--gris-claro);
    color: var(--verde-principal);
}

.dropdown-toggle i {
    font-size: 0.75rem;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--blanco);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 400px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    display: block;
}

.hero-content {
    display: none;
}

.hero-logos {
    display: none;
}

.hero-logo img {
    display: none;
}

/* ===================================
   SECTION TITLES
   =================================== */
.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--verde-principal);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--verde-principal), var(--verde-claro));
    border-radius: 2px;
}

/* ===================================
   NOTICIAS SECTION
   =================================== */
.noticias {
    padding: 5rem 0;
    background: var(--gris-claro);
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.noticia-card {
    background: var(--blanco);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.noticia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.noticia-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.noticia-content {
    padding: 1.5rem;
}

.noticia-content h3 {
    color: var(--verde-principal);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.noticia-content p {
    color: var(--gris-oscuro);
    margin-bottom: 1rem;
}

.btn-more {
    color: var(--verde-principal);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-more:hover {
    color: var(--verde-claro);
}

/* ===================================
   COLABORADORES SECTION
   =================================== */
.colaboradores {
    padding: 5rem 0;
    background: var(--blanco);
}

.colaboradores-carrusel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.colaboradores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
    overflow: hidden;
}

.carrusel-btn {
    background: var(--verde-principal);
    color: var(--blanco);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 102, 53, 0.3);
    flex-shrink: 0;
}

.carrusel-btn:hover:not(:disabled) {
    background: var(--verde-claro);
    transform: scale(1.1);
}

.carrusel-btn:disabled {
    background: var(--gris-medio);
    cursor: not-allowed;
    opacity: 0.5;
    transform: scale(1);
}

.carrusel-indicadores {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicador {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gris-medio);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicador.active {
    background: var(--verde-principal);
    width: 30px;
    border-radius: 6px;
}

.colaborador-card {
    text-align: center;
}

.colaborador-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--verde-principal);
    box-shadow: 0 4px 15px rgba(6, 102, 53, 0.2);
}

.colaborador-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.colaborador-card h3 {
    font-size: 1.25rem;
    color: var(--verde-principal);
    margin-bottom: 0.5rem;
}

.colaborador-card .cargo {
    color: var(--gris-oscuro);
    font-size: 0.95rem;
}

/* ===================================
   CLUBES AFILIADOS SECTION
   =================================== */
.clubes-afiliados {
    padding: 5rem 0;
    background: var(--gris-claro);
    overflow: hidden;
}

.clubes-carrusel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clubes-carrusel {
    display: flex;
    gap: 3rem;
    animation: scrollClubes 60s linear infinite;
    width: max-content;
}

.clubes-carrusel:hover {
    animation-play-state: paused;
}

@keyframes scrollClubes {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.club-logo {
    width: 150px;
    height: 150px;
    background: var(--blanco);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.club-logo:hover {
    transform: scale(1.1);
}

.club-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ===================================
   PATROCINADORES SECTION
   =================================== */
.patrocinadores {
    padding: 5rem 0;
    background: var(--gris-claro);
}

.patrocinadores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.patrocinador-logo {
    background: var(--blanco);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    width: 100%;
}

.patrocinador-logo:hover {
    transform: scale(1.05);
}

.patrocinador-logo img {
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
}

/* ===================================
   SITIOS OFICIALES SECTION
   =================================== */
.sitios-oficiales {
    padding: 5rem 0;
    background: var(--blanco);
}

.redes-sociales {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--blanco);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-icon.whatsapp {
    background: #25D366;
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===================================
   UBICACIÓN SECTION
   =================================== */
.ubicacion {
    padding: 5rem 0;
    background: var(--gris-claro);
}

.mapa-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 1000px;
    margin: 0 auto;
}

.mapa-container iframe {
    display: block;
    width: 100%;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde-principal) 100%);
    color: var(--blanco);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--gris-claro);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

/* ===================================
   PAGE HERO (Páginas internas)
   =================================== */
.page-hero {
    background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-oscuro) 100%);
    color: var(--blanco);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

/* ===================================
   QUIÉNES SOMOS PAGE
   =================================== */
.quienes-somos-content {
    padding: 5rem 0;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    color: var(--verde-principal);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.image-block {
    margin: 3rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-block img {
    width: 100%;
    height: auto;
}

.values-section {
    margin: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--gris-claro);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 3rem;
    color: var(--verde-principal);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--verde-principal);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gris-oscuro);
    font-size: 0.95rem;
}

/* ===================================
   TORNEOS PAGE
   =================================== */
.torneos-content {
    padding: 5rem 0;
}

.torneo-section {
    margin-bottom: 5rem;
}

.torneo-header {
    margin-bottom: 2rem;
}

.torneo-header h2 {
    color: var(--verde-principal);
    font-size: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--verde-principal);
}

.torneo-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.torneo-body.reverse {
    direction: rtl;
}

.torneo-body.reverse > * {
    direction: ltr;
}

.torneo-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.torneo-features {
    list-style: none;
}

.torneo-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.torneo-features i {
    color: var(--verde-principal);
    font-size: 1.25rem;
}

.torneo-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.torneo-image img {
    width: 100%;
    height: auto;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .torneo-body,
    .torneo-body.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .logo img {
        height: 60px;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-oscuro) 100%);
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-list {
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
    }

    .menu-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-list a {
        display: flex;
        justify-content: space-between;
        padding: 1rem 2rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.1);
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        color: var(--blanco);
        padding-left: 3rem;
    }    .hero {
        min-height: 300px;
        background-size: contain;
        background-position: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .colaboradores-carrusel {
        flex-direction: column;
        gap: 1.5rem;
    }

    .colaboradores-grid {
        grid-template-columns: 1fr;
    }

    .carrusel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .club-logo {
        width: 120px;
        height: 120px;
    }

    .noticias-grid,
    .colaboradores-grid,
    .patrocinadores-grid {
        grid-template-columns: 1fr;
    }

    .redes-sociales {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .content-block p {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Very small screens */
@media (max-width: 480px) {    
    .logo img {
        height: 50px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .hero {
        min-height: 250px;
        background-size: contain;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .torneo-header h2 {
        font-size: 1.75rem;
    }

    .carrusel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .club-logo {
        width: 100px;
        height: 100px;
    }
}

/* ===================================
   PÁGINA DE NOTICIAS
   =================================== */
.noticias-page {
    padding: 5rem 0;
    background: var(--gris-claro);
}

.noticia-detalle {
    background: var(--blanco);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.noticia-detalle-imagen {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.noticia-detalle-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticia-detalle-contenido {
    padding: 3rem;
}

.noticia-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gris-oscuro);
    font-size: 0.9rem;
}

.noticia-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.noticia-meta i {
    color: var(--verde-principal);
}

.noticia-detalle-contenido h2 {
    color: var(--verde-principal);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.noticia-detalle-contenido h3 {
    color: var(--verde-principal);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.noticia-detalle-contenido .lead {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gris-oscuro);
}

.noticia-detalle-contenido p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.noticia-detalle-contenido blockquote {
    background: var(--gris-claro);
    border-left: 4px solid var(--verde-principal);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gris-oscuro);
}

.noticia-lista {
    list-style: none;
    margin: 1.5rem 0;
}

.noticia-lista li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.noticia-lista li::before {
    content: '⚽';
    position: absolute;
    left: 0;
    color: var(--verde-principal);
}

.noticia-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--verde-principal), transparent);
    margin: 4rem 0;
}

/* ===================================
   PÁGINA PQR
   =================================== */
.pqr-content {
    padding: 5rem 0;
    background: var(--gris-claro);
}

.pqr-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pqr-intro h2 {
    color: var(--verde-principal);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pqr-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gris-oscuro);
}

.pqr-alert {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.pqr-alert i {
    font-size: 1.5rem;
    color: #856404;
    min-width: 30px;
}

.pqr-alert p {
    margin: 0;
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.6;
}

.pqr-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.pqr-form-container {
    background: var(--blanco);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pqr-form-container h3 {
    color: var(--verde-principal);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pqr-form .form-group {
    margin-bottom: 1.5rem;
}

.pqr-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gris-oscuro);
    font-weight: 500;
}

.pqr-form input,
.pqr-form select,
.pqr-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gris-medio);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.pqr-form input:focus,
.pqr-form select:focus,
.pqr-form textarea:focus {
    outline: none;
    border-color: var(--verde-principal);
}

.pqr-form textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pqr-form small {
    display: block;
    margin-top: 0.5rem;
    color: var(--gris-oscuro);
    font-size: 0.85rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group a {
    color: var(--verde-principal);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-claro));
    color: var(--blanco);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 102, 53, 0.3);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gris-oscuro);
    text-align: center;
}

.mensaje-exito {
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.mensaje-exito i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.mensaje-exito h4 {
    color: #155724;
    margin-bottom: 0.5rem;
}

.mensaje-exito p {
    color: #155724;
}

/* Información PQR */
.pqr-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: var(--blanco);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
    color: var(--verde-principal);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gris-claro);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list i {
    font-size: 1.5rem;
    color: var(--verde-principal);
    min-width: 30px;
}

.info-list strong {
    display: block;
    color: var(--verde-principal);
    margin-bottom: 0.25rem;
}

.info-list p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gris-oscuro);
}

.contacto-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gris-claro);
}

.contacto-item:last-child {
    border-bottom: none;
}

.contacto-item i {
    font-size: 1.5rem;
    color: var(--verde-principal);
    min-width: 30px;
}

.contacto-item strong {
    display: block;
    color: var(--verde-principal);
    margin-bottom: 0.25rem;
}

.contacto-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gris-oscuro);
}

.faq-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gris-claro);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item strong {
    display: block;
    color: var(--verde-principal);
    margin-bottom: 0.5rem;
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gris-oscuro);
    line-height: 1.6;
}

/* Responsive - Noticias y PQR */
@media (max-width: 968px) {
    .noticia-detalle-imagen {
        height: 300px;
    }

    .noticia-detalle-contenido {
        padding: 2rem;
    }

    .noticia-detalle-contenido h2 {
        font-size: 1.75rem;
    }

    .pqr-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .noticia-detalle-imagen {
        height: 250px;
    }

    .noticia-detalle-contenido {
        padding: 1.5rem;
    }

    .noticia-detalle-contenido h2 {
        font-size: 1.5rem;
    }

    .noticia-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pqr-form-container {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
