@charset "UTF-8";
/* Fuentes personalizadas */
@font-face {
    font-family: 'ViceCitySans';
    src: url('font/ViceCitySans-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'ViceCitySans';
    src: url('font/ViceCitySans-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'ViceCitySans';
    src: url('font/ViceCitySans-ItalicLight.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'ViceCitySans';
    src: url('font/ViceCitySans-ItalicBold.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

img, video {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Galerías listado */
.galerias-section {
  padding: 2rem 1rem;
  margin-bottom: 100px;
}

.container-full {
  max-width: 100%;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.galerias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0rem;
}

@media (max-width: 1024px) {
  .galerias-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .galerias-grid {
    grid-template-columns: 1fr;
  }
}

.galeria-card {
  display: block;
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  padding: 2px;
}

.galeria-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.galeria-card-content {
  padding: 0rem;
}

.galeria-card-description {
  color: #7f8c8d;
  margin: 0;
}

/* Ocultar título y descripción dentro de cada tarjeta de galería en el listado */
.galerias-section .galeria-card h3 {
  display: none;
}
.galerias-section .galeria-card .galeria-card-description {
  display: none;
}


.logo img {
    height: 120px;
    position: relative;
}
.noticia-titulo-principal {
    font-size: 2.0rem;
    color: #0045A0;
    margin-bottom: 2rem;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
    text-align: center;
}

.noticia-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.noticias-relacionadas {
    background: #d7e8fa;
    margin-bottom: 23px;
    padding-bottom: 102px;
    padding-top: 40px;
}

.noticias-relacionadas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.section-title i {
    color: #3498db;
    font-size: 2rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.noticia-relacionada-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}

.noticia-relacionada-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.noticia-relacionada-imagen {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.noticia-relacionada-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: 26px;
    transition: transform 0.4s ease;
}



.imagen-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    opacity: 0.5;
}

.noticia-fecha-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: none;
}

.noticia-relacionada-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.noticia-relacionada-titulo {
    font-size: 1em;
    color: black;
    margin-bottom: 1rem;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia-relacionada-resumen {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: normal !important;
}

.noticia-relacionada-footer {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    justify-content: flex-end;
}

.autor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #495057;
    font-weight: 500;
}

.autor-badge i {
    color: #3498db;
    font-size: 0.9rem;
}

.btn-leer-mas-relacionada {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #cf058e;
    color: white;
    text-decoration: none;
    border-radius: 51px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.btn-leer-mas-relacionada:hover {
    background: #130268;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.btn-leer-mas-relacionada i {
    transition: transform 0.3s ease;
}

.btn-leer-mas-relacionada:hover i {
    transform: translateX(3px);
}

/* Responsive para noticias relacionadas */
@media (max-width: 768px) {
    .mision-vision-section .imagen-content { padding: 0 1rem; }
    .mision-vision-section .evento-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-bottom: 0;
        object-fit: contain;
        border-radius: 20px;
    }
    .noticias-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .noticia-relacionada-imagen {
        height: 180px;
    }
}

.noticia-contenido {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.noticia-contenido p {
    margin-bottom: 1.5rem;
}

/* Estilos para el contenido HTML del editor WYSIWYG */
.noticia-contenido h1,
.noticia-contenido h2,
.noticia-contenido h3,
.noticia-contenido h4,
.noticia-contenido h5,
.noticia-contenido h6 {
    color: #0045A0;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
    margin: 2rem 0 1rem 0;
}

.noticia-contenido h1 { font-size: 2rem; }
.noticia-contenido h2 { font-size: 1.8rem; }
.noticia-contenido h3 { font-size: 1.5rem; }
.noticia-contenido h4 { font-size: 1.3rem; }
.noticia-contenido h5 { font-size: 1.1rem; }
.noticia-contenido h6 { font-size: 1rem; }

.noticia-contenido strong,
.noticia-contenido b {
    font-weight: bold;
    color: #4a4a4a;
}

.noticia-contenido em,
.noticia-contenido i {
    font-style: italic;
}

.noticia-contenido u {
    text-decoration: underline;
}

.noticia-contenido s {
    text-decoration: line-through;
}

.noticia-contenido ul,
.noticia-contenido ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.noticia-contenido li {
    margin-bottom: 0.5rem;
}

.noticia-contenido blockquote {
    border-left: 4px solid #0045A0;
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    font-style: italic;
}

.noticia-contenido a {
    color: #0045A0;
    text-decoration: underline;
}

.noticia-contenido a:hover {
    color: #003366;
}

.noticia-contenido img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.noticia-contenido table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.noticia-contenido table th,
.noticia-contenido table td {
    border: 1px solid #ddd;
    padding: 0.75rem;
    text-align: left;
}

.noticia-contenido table th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #0045A0;
}

.noticia-contenido code {
    background-color: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.noticia-contenido pre {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin: 1rem 0;
}

        .noticia-contenido pre code {
            background: none;
            padding: 0;
        }

        /* Estilos para el botÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n de copiar enlace */
        .social-share-btn.copy-link {
            background: #02a2dd;
            border: none;
            cursor: pointer;
        }

        .social-share-btn.copy-link:hover {
            background: linear-gradient(135deg, #5a6268, #343a40);
            transform: translateY(-2px);
        }

        .social-share-btn.copy-link i {
            color: white;
        }


.sin-noticias {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
    font-size: 1.2rem;
}

.noticia-titulo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #0045A0;
    margin-bottom: 0.5rem;
    font-family: 'ViceCitySans', Arial, sans-serif;
}

.noticia-fecha {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
}

/* Estilo para fecha en el listado de noticias (una sola lÃƒÆ’Ã‚Â­nea) */
.noticia-fecha-listado {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
}

.noticia-imagen img {
    width: 100%;
    height: 100%;
    border-radius: 16px 0 0 20px;
    padding: 9px;
}
/* Header */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav {
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
    min-height: 72px;
}

.header.nav-open {
    background: rgba(0, 69, 160, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle { display: none; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}

.nav-close,
.nav-close-btn {
    display: none;
}

.logo h2 {
    color: #2c5aa0;
    font-size: 1.8rem;
    font-weight: bold;
}

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


.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #e61584;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #e61584;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: #e61584;
    font-weight: 600;
}

.nav-menu a.active::after {
    display: none;
}

.nav-menu a.btn-postula::after { display: none; }
.nav-menu a.btn-postula.active { border-bottom: 0; }

.nav-menu li {
    position: relative;
}

.nav-menu li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: #e61584;
    transition: width 0.3s ease;
}

.nav-menu li:hover::after {
    width: 100%;
}

.nav-menu a::after { display: none; }
.nav-menu a.active { border-bottom: 0; }
.nav-menu li.active::after { width: 100%; }
.nav-menu li.nav-cta::after { display: none; }

.btn-postula {
    background-color: #e61584;
    color: white;
    border: none;
    padding: 0.5rem 1.9rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: -4px;
}

.btn-postula:hover {
    background-color: #ec268f;
    color: white;
    text-decoration: none;
}

.btn-postula.active {
    transform: translateY(-1px);
}

.header .btn-postula.active {
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    padding-bottom: 4rem;
    overflow: hidden;
    background: #2c5aa0; /* Fallback background */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #2c5aa0; /* Fallback background */
}

.hero-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
    min-width: 100%;
    min-height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    z-index: 3;
    position: relative;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-size: 3.2rem;
    margin-bottom: 0.25rem;
    opacity: 1;
    line-height: 1.1;
    font-weight: 700;
}

.hero-subtitle-cc {
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-size: 5rem;
    margin-top: 0.25rem;
    margin-bottom: 0;
    line-height: 1;
    font-weight: 900;
}


.btn-primary {
    background-color: #fff;
    color: #2c5aa0;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: white;
    color: #2c5aa0;
}

/* Socios Section */
.socios {
    padding: 2rem 0 2rem 0rem;
    background-color: #ffffff;
}

.socios h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #848687;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
}

.logos-scroll-container {
    overflow: hidden;
    width: 99vw;
    position: relative;
    margin-left: calc(-50vw + 50%);
    display: flex;
    justify-content: flex-start;
}

.logos-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    width: max-content;
    min-width: 100vw;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    background-color: #fff;
    padding: 0rem;
    border-radius: 0px;
    text-align: center;
    height: auto;
    width: auto;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo-item img {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
}


.logo-item:hover {
    transform: scale(1.05);
}

.mas-seguro {
    position: relative;
    min-height: auto;
    overflow: hidden;
    background-color: #0f0260;
}

.mas-seguro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-color: #cf058e;
    animation: colorSequence 12s ease-in-out infinite;
    clip-path: ellipse(100% 100% at 50% 0%);
    z-index: 1;
}

@keyframes colorSequence {
    0% {
        background-color: #cf058e;
    }
    50% {
        background-color: #0f0260;
    }
    100% {
        background-color: #cf058e;
    }
}



.mas-seguro .container {
    position: relative;
    z-index: 2;
    padding: 0rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto;
}

.mas-seguro-content {
    border-radius: 20px;
    padding: 0rem 0rem;
    max-width: 1050px;
    width: 100%;
    text-align: center;
    position: relative;
}


.mas-seguro h2 {
    font-size: 4rem;
    margin-bottom: 0px;
    font-weight: bold;
    color: #ffffff;
    font-family: 'ViceCitySans', Arial, sans-serif;
}

.mas-seguro .subtitulo {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0rem;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
    line-height: 1.5;
}

.mas-seguro .titulo-principal {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: 'ViceCitySans', Arial, sans-serif;
}

.mas-seguro p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #666;
}

.mas-seguro .btn-primary {
    display: block;
    margin: 0 auto;
}

.mas-seguro-image {
    margin-top: 2rem;
    text-align: center;
}

.mas-seguro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Potenciar Section */
.potenciar {
    padding: 4rem 0;
    background: #ffffff;
    color: white;
    padding-bottom: 130px;
}

.potenciar-content {
    display: grid;
    grid-template-columns: 0.5fr 1fr 0.4fr;
    gap: 1rem;
    align-items: start;
}

/* Columna Izquierda - Texto */
.potenciar-text {
    padding: 2rem 0;
}

.potenciar-title {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
}

.text-green { color: #4caf50; }
.text-blue {color: #0045A0;}
.text-pink { color: #e91e63; }
.text-yellow {color: #FFCC29;}

.potenciar-subtitle {
    font-size: 1.1rem;
    color: #848687;
    line-height: 1.5;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
}

/* Columna Central - Formulario */
.potenciar-form {
    display: flex;
    justify-content: center;
}

.form-container {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #0045a0;
    border-radius: 15px;
    padding: 1.5rem;
    width: 100%;
    max-width: 523px;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.form-modality {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #0045a0;
    font-size: 0.9rem;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 16px;
    height: 16px;
    border: 2px solid #0045a0;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    background: #2196f3;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    box-sizing: border-box;
}

.form-row-full {
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

.form-fields input,
.form-fields textarea {
    padding: 1rem;
    border: 2px solid #0045a0;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #000000;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex: 1;
    box-sizing: border-box;
    width: 100%;
    font-family: 'ViceCitySans', Arial, sans-serif;
}

.form-row input {
    flex: 1;
}

.form-row-full input,
.form-row-full textarea {
    width: 100%;
}

.form-fields input::placeholder,
.form-fields textarea::placeholder {
    color: #848687;
}

.form-fields input:focus,
.form-fields textarea:focus {
    outline: none;
    border-color: #4caf50;
    background: rgba(255, 255, 255, 0.2);
}

.form-fields textarea {
    min-height: 80px;
    resize: vertical;
    font-family: 'ViceCitySans', Arial, sans-serif;
}

.form-checkbox {
    margin-bottom: 1rem;
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: #848687;
    font-size: 0.85rem;
    line-height: 1.4;
}

.checkbox-text {
    flex: 1;
}

.form-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid #0045a0;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.form-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #2196f3;
}

.form-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '\2713'; /* ✓ */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.privacy-link {
    color: #0045a0;
    text-decoration: underline;
    font-weight: normal;
}

.form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.required-fields {
    font-size: 0.8rem;
    color: #999;
    margin: 0;
}

.form-submit {
    padding: 0.8rem 2rem;
    background: white;
    color: #0045a0;
    border: 2px solid #0045a0;
    border-radius: 44px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.form-submit:hover {
    background: #0045a0;
    border-color: #0045a0;
    color: white;
}

/* Columna Derecha - Programas */
.potenciar-programs {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.program-item img {
    width: 299px;
}
.program-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-text {
    flex: 1;
}

.program-label {
    font-size: 0.8rem;
    color: #999;
    display: block;
    margin-bottom: 0.5rem;
}

.program-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.text-orange { color: #ff9800; }
.text-brown { color: #8d6e63; }
.text-green {color: #8EC63F;}
.text-magenta { color: #e91e63; }
.text-purple { color: #9c27b0; }

.program-description {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

/* Footer */
.footer {
    background: #0045a0;
    color: white;
    padding: 2rem 0 1rem;
    border-radius: 100px 100px 0 0;
    margin-top: -89px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Logo IPC */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 30px;
}

.logo-head {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.logo-body {
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    position: absolute;
    top: 3px;
    left: 8px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

/*  */
.footer-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-item:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.nav-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    display: block;
    margin-bottom: 0.2rem;
}

.nav-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    display: block;
    line-height: 0.5;
}

.nav-separator {
    width: 1px;
    height: 40px;
    background: white;
    opacity: 0.3;
}

/* Redes sociales */
.footer-social {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-icon {
    width: 30px;
    height: 30px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0045a0;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Estilos especÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­ficos para cada red social */
.social-icon.facebook {
    border-radius: 50%;
}

.social-icon.youtube {
    border-radius: 8px;
}

.social-icon.tiktok {
    border-radius: 50%;
}

.social-icon.linkedin {
    border-radius: 6px;
}

.social-icon.twitter {
    border-radius: 6px;
}

.social-icon.instagram {
    border-radius: 8px;
}

.social-icon.whatsapp {
    border-radius: 50%;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.footer-logo img {
    width: 100px;
}
/* Separador */
.footer-separator {
    width: 100%;
    height: 1px;
    background: white;
    opacity: 0.3;
    margin-bottom: 1rem;
}

/* Copyright */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
}

.footer-bottom a {
    font-size: 0.9rem;
    margin: 0;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.footer-bottom .footer-email {
    font-size: 0.9rem;
    margin: 0;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom .footer-copy {
        text-align: center;
    }
    .header.nav-open {
        background: rgba(0, 69, 160, 0.9);
        border-bottom-color: rgba(255, 255, 255, 0.24);
    }
    .nav-container {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        width: 100%;
    }
    
    /* Toggle de navegación (hamburguesa) */
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.25rem;
    }
    .nav-toggle .nav-toggle-bar {
        display: block;
        width: 24px;
        height: 2px;
        background: #ffffff;
        margin: 5px 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav-toggle.open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
    .nav-toggle.open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    
    /* Menú móvil desplegable */
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        overflow-y: auto;
        padding: 0.75rem 1rem;
        padding-top: 72px;
        background: rgba(0, 69, 160, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.24);
        z-index: 999;
    }
    .nav-menu.show { display: flex; }
    .nav-toggle { margin-left: auto; }
    .logo img {position: relative;width: 110px;height: auto;}

    .header.nav-open {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .nav-menu li { width: 100%; }
    .nav-menu li + li { margin-top: 0.25rem; }
    .nav-menu li::after { display: none; }
    .nav-menu a {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        width: 100%;
        padding: 0.85rem 0.9rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.06);
    }
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
    }
    .nav-menu li.active a {
        background: rgba(230, 21, 132, 0.18);
        color: #e61584;
    }
    .nav-menu a.btn-postula {
        background-color: #e61584;
        color: #ffffff;
        border-radius: 9999px;
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1rem;
    }
    .nav-close { list-style: none; }
    .nav-close-btn {
        position: fixed;
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        line-height: 38px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.92);
        color: #0045a0;
        font-size: 24px;
        font-weight: 700;
        cursor: pointer;
        z-index: 1002;
        display: inline-block;
        text-align: center;
    }
    .nav-menu:not(.show) .nav-close-btn { display: none; }
    .nav-menu.show .nav-close,
    .nav-menu.show .nav-close-btn { display: inline-block; }
    .header.nav-open .nav-close-btn { display: inline-flex; align-items: center; justify-content: center; }
    .nav-close-btn:active { transform: scale(0.98); }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-subtitle-cc {
        font-size: 2rem;
    }
    
    
    .logos-track {
        min-width: 100vw;
        gap: 1.5rem;
    }
    
    .logo-item {
        width: auto;
        min-width: 100px;
        height: 80px;
        padding: 0.8rem;
    }
    
    .logo-item img {
        max-height: 100px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .nav-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-separator {
        width: 40px;
        height: 1px;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer {
        margin-top: 0;
        border-radius: 50px 50px 0 0;
        padding: 1.5rem 0;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 640px) {
    .nav-container {
        min-height: 64px;
    }
    .nav-menu {
        top: 0;
        height: 100vh;
        padding-top: 64px;
    }
    .nav-close-btn { top: 12px; }
}

@media (max-width: 480px) {
    .mision-vision-section .imagen-content { padding: 0 0.75rem; }
    .mision-vision-section .evento-image {
        width: 98% !important;
        max-width: 100%;
        height: auto;
        margin-bottom: 0;
        margin-bottom: -50px;
        border-radius: 16px;
    }
    .hero {
        height: 40vh;
        padding-bottom: 2rem;
    }
    
    .hero-video video {
        object-position: center center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-subtitle-cc {
        font-size: 1.8rem;
    }
    
    .mas-seguro h2 {
        font-size: 2.5rem;
    }
    
    .mas-seguro .subtitulo {
        font-size: 1rem;
    }
    
    .mas-seguro .titulo-principal {
        font-size: 1rem;
    }
    
    .mas-seguro-content {
        padding: 0rem;
        margin: 1rem;
    }
    
    .mas-seguro-image {
        margin-top: 1.5rem;
    }
    
    .mas-seguro-image img {
        border-radius: 8px;
    }
    
    .socios h2 {
        font-size: 2rem;
    }
    
    .potenciar-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .potenciar-title {
        font-size: 2rem;
    }
    
    .form-container {
        max-width: 100%;
    }
    
    .program-item {
        flex-direction: column;
        text-align: center;
    }
    
    .program-icon {
        width: 80px;
        height: 80px;
    }
    
    .logos-track {
        min-width: 100vw;
        gap: 1rem;
    }
    
    .logo-item {
        width: auto;
        min-width: 80px;
        height: 60px;
        padding: 0.5rem;
    }
    
    .logo-item img {
        max-height: 80px;
    }
    .footer {
        margin-top: 0;
        border-radius: 0;
        padding: 1.25rem 0;
    }
}

/* ===== NUEVAS SECCIONES PARA QUIENES SOMOS ===== */

/* Nosotros Section */
.nosotros {
    padding: 4rem 0;
}

.nosotros-title {
    font-size: 3rem;
    font-weight: bold;
    color: #E61584;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'ViceCitySans', Arial, sans-serif;
    position: relative;
}

.nosotros-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 163px;
    height: 4px;
    background-color: #0045A0;
    border-radius: 2px;
}

.nosotros-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.nosotros-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7F7F7F;
    margin-bottom: 2rem;
    text-align: justify;
}

.nucleos-operativos-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #7F7F7F;
}

.nucleos-operativos h3 {
    font-size: 1.8rem;
    color: #0045A0;
    margin-bottom: 2rem;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
}

.nucleos-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.nucleos-list li {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid #0045A0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nucleos-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Imagen dentro de mision-vision-section */
.mision-vision-section .imagen-content {
    text-align: center;
    margin-bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    clear: both;
    float: none;
    background-color: white;
}

.mision-vision-section .evento-image {
    width: 100%;
    max-width: max-content;
    height: 100%;
    border-radius: 20px 20px 0 0;
    transition: transform 0.3s 
ease;
    display: block;
    object-fit: cover;
    border-radius: 30px;
}

.mision-vision-section .evento-image:hover {
}

.clear {
    clear: both;
    height: 0;
    overflow: hidden;
    display: block;
    width: 100%;
}

/* MisiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³n y VisiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³n Section */
.mision-vision-section {
    background: #f8f9fa;
    color: white;
    padding: 0;
    overflow: hidden;
    margin: 2rem auto;
    max-width: 100%;
}

.mision-vision-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* MisiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³n y VisiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³n */
.mision-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: -336px;
    background: linear-gradient(90deg, #cf058e 0%, #0f0260 100%);
    padding-top: 336px;
    padding-left: 17%;
    padding-right: 15%;
    text-align: justify;
}

.mision, .vision {
    background: transparent;
    padding: 3rem 2.5rem;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    position: relative;
}

.mision {
}

.vision {
}

.mision h3, .vision h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
    text-align: left;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-align: center;
}

.mision p, .vision p {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
    text-align: justify;
    margin: 0;
}

/* Valores Section */
.valores-section {
    background: #f8f9fa;
    color: #333;
    padding: 4rem 0;
}

.valores-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Valores */
.valores {
    text-align: center;
}

.valores-title {
    font-size: 2.5rem;
    color: #E61584;
    margin-bottom: 3rem;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
    position: relative;
}

.valores-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 4px;
    background-color: #0045A0;
    border-radius: 2px;
}

.valores-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 100%;
    overflow-x: auto;
    padding-top: 11px;
}

.valor-item {
    background: transparent;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 0;
    max-width: calc(100% / 7);
}

.valor-item:hover {
    transform: translateY(-5px);
}

.valor-icon {
    width: 104px;
    height: 103px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    padding: 0px;
}

.valor-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.valor-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    display: block;
    line-height: 1.2;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
}

/* Responsive para las nuevas secciones */
@media (max-width: 768px) {
    .nosotros-title {
        font-size: 2.5rem;
    }
    
    .nosotros-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .nucleos-list {
        grid-template-columns: 1fr;
    }
    
    .nucleos-list li {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .mision-vision {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 0;
        padding: 2rem 1rem;
    }
    
    .mision, .vision {
        padding: 2rem;
    }
    
    .mision h3, .vision h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .mision p, .vision p {
        font-size: 1rem;
        text-align: center;
    }
    
.valores-title {
    font-size: 2rem;
}

.valores-grid {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        overflow: visible;
        padding-bottom: 0;
}

.valor-item {
        padding: 0.75rem 0;
        width: 100%;
        max-width: 600px;
        min-width: 0;
}
    
    .valor-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
        padding: 8px;
    }
    
    .valor-item span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .nosotros {
        padding: 3rem 0;
    }
    
    .nosotros-title {
        font-size: 2rem;
    }
    
    .nosotros-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .nucleos-operativos h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .nucleos-list li {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .imagen-section {
        padding: 2rem 0;
    }
    
    .mision-vision-section {
        margin: 1rem auto;
    }
    
    .valores-section {
        padding: 3rem 0;
    }
    
    .mision, .vision {
        padding: 1.5rem;
    }
    
    .mision h3, .vision h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .valores-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .valores-grid {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
        overflow: visible;
        padding-bottom: 0;
    }
    
    .valor-item {
        padding: 0.5rem 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .valor-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 0.3rem;
        padding: 6px;
    }
    
    .valor-item span {
        font-size: 0.7rem;
    }
}

/* OrganizaciÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³n Section */
.organizacion-section {
    background: #d7e9fa;
    padding: 4rem 0;
    text-align: center;
    padding-bottom: 130px;
}

.organizacion-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.organizacion-title {
    font-size: 3rem;
    font-weight: bold;
    color: #E61584;
    margin: 0;
    font-family: 'ViceCitySans', Arial, sans-serif;
    position: relative;
    display: inline-block;
}

.organizacion-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 4px;
    background-color: #0045A0;
    border-radius: 2px;
}

.organizacion-image {
    text-align: center;
    margin-top: 3rem;
}

.org-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.org-image:hover {
    transform: scale(1.02);
}

/* Responsive para OrganizaciÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³n */
@media (max-width: 768px) {
    .organizacion-section {
        padding: 3rem 0;
    }
    
    .organizacion-title {
        font-size: 2.5rem;
    }
    
    .organizacion-image {
        margin-top: 2rem;
    }
    
    .org-image {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .organizacion-section {
        padding: 2rem 0;
    }
    
    .organizacion-title {
        font-size: 2rem;
    }
    
    .organizacion-image {
        margin-top: 1.5rem;
    }
    
    .org-image {
        border-radius: 8px;
    }
}

/* Estilos para la secciÃƒÂ³n de Valor Compartido */
.valor-compartido-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.valor-compartido-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.valor-compartido-logo {
    margin-bottom: 30px;
}

.valor-compartido-logo img {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.valor-compartido-texto {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #848487;
    margin: 0 0 30px 0;
    padding: 0 20px;
    font-weight: 400;
}

.valor-compartido-boton {
    margin-top: 30px;
}

.btn-ipc-lab {
    display: inline-block;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    border: none;
    cursor: pointer;
}

.btn-ipc-lab:hover {
    background: linear-gradient(135deg, #357abd, #2a5f8f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    color: white;
    text-decoration: none;
}

.btn-ipc-lab:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
}

@media (max-width: 768px) {
    .valor-compartido-section {
        padding: 40px 0;
    }
    
    .valor-compartido-logo img {
        max-width: 250px;
    }
    
    .valor-compartido-texto {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .btn-ipc-lab {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Estilos para la secciÃƒÆ’Ã†â€™Ãƒâ€ 'ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³n de Noticias */
.noticias-section {
    padding: 80px 0;
    background-color: #e8f4fd;
}

.noticias-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #E61584;
    margin-bottom: 60px;
    position: relative;
}

.noticias-title::after {
content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #0045A0;
    border-radius: 2px;
}

.noticia-card {
    background: white;
    border-radius: 27px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.noticia-imagen {
    width: 40%;
    flex-shrink: 0;
    border-radius: 20px 0 0 20px;
}

.noticia-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.noticia-texto {
    font-size: 1rem;
    line-height: 1.6;
    color: #848687;
    margin-bottom: 25px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-height: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal !important;
}

.btn-leer-mas {
    background: #cf058e;
    border: 1px solid #cf058e;
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: auto;
}

.btn-leer-mas:hover {
    background: #130268;
    border-color: #130268;
}

/* Responsive para Noticias */
@media (max-width: 768px) {
    .noticias-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    .noticias-section {
        padding: 40px 0;
    }
    .noticias-section .container {
        padding: 0 12px;
    }
    
    .noticia-card {
        flex-direction: column;
    }
    
    .noticia-imagen {
        width: 100%;
        height: auto;
        border-radius: 20px 20px 0 0;
    }
    
    .noticia-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .noticias-section {
        padding: 24px 0;
    }
    .noticias-title {
        font-size: 2rem;
        margin-bottom: 28px;
    }
    .noticia-content {
        padding: 16px;
    }
    .noticia-card {
        margin-bottom: 28px;
        border-radius: 22px;
    }
}

/* Estilos para el contenido de noticias */
.noticia-content-section {
    background-color: #D7E8FA;
    padding: 40px 0;
    padding-bottom: 20px;
}

.noticia-header {
    margin-bottom: 0px;
    position: relative;
    border-radius: 0 0 30px 30px;
    padding: 20px;
}

.noticia-fecha {
    position: absolute;
    top: 66px;
    left: 88px;
    color: #848687;
    background-color: #ffffff;
    font-size: 13px;
    padding: 11px 10px;
    border-radius: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 70px;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: bold;
}

.noticia-banner {
    width: 800px;
    height: auto;
    border-radius: 20px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

.noticia-article {
    max-width: 100%;
    margin: 0 auto;
    margin-top: -287px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 111px;
    background-color: #ffffff;
    border-radius: 50px;
    padding-bottom: 20px;
    padding-top: 299px;
}

.noticia-article p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #848687;
    text-align: justify;
}

article.noticia-article p {
    line-height: normal !important;
}

.noticia-pregunta {
    font-weight: 600;
    color: #2c5aa0;
    font-style: italic;
    border-left: 4px solid #2c5aa0;
    padding-left: 15px;
    margin-top: 30px;
}

.noticia-footer {
    margin-top: 40px;
    padding: 5px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #ffffff;
    border-radius: 50px;
}

.share-text {
    color: #0045a0;
    font-size: 14px;
    font-weight: 500;
    font-weight: bold;
}

.social-share {
    display: flex;
    gap: 10px;
}

.social-share-btn {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.social-share-btn:hover {
    transform: translateY(-2px);
}

.social-share-btn.facebook {
    background-color: #8EC63F;
}

.social-share-btn.linkedin {
    background-color: #0045A0;
}

.social-share-btn.twitter {
    background-color: #E61584;
}

.social-share-btn.whatsapp {
    background-color: #FFCC29;
}

.btn-download {
    background-color: #cf058e;
    color: #fff;
    border: none;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.btn-download:hover {
    background-color: #130268;
}

.btn-download i {
    font-size: 16px;
}

.btn-download svg {
    height: 1em;
    font-size: 25px;
    fill: currentColor;
    margin-right: 0.4rem;
    vertical-align: middle;
}

/* Responsive para noticia */
@media (max-width: 768px) {
    .noticia-banner {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 16px;
    }
    
    .noticia-article {
        margin-top: 0;
        padding: 16px;
        border-radius: 24px;
        padding-top: 16px;
    }
    
    .noticia-article p {
        font-size: 15px;
    }
    
    .noticia-footer {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        border-radius: 18px;
    }
    
    .share-text {
        order: 1;
        margin-bottom: 15px;
    }
    
    .social-share {
        order: 2;
        margin-bottom: 15px;
    }
    
    .btn-download {
        order: 3;
    }
    .noticia-content-section {
        padding: 24px 0;
        padding-bottom: 16px;
    }
    .noticia-header {
        padding: 12px;
        border-radius: 0 0 24px 24px;
    }
    .noticia-fecha {
        position: static;
        margin: 0 0 12px 0;
        min-width: auto;
        padding: 8px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .noticia-header {
        padding: 10px;
    }
    .noticia-article {
        padding: 12px;
        padding-top: 12px;
        border-radius: 20px;
    }
    .noticia-fecha {
        font-size: 11px;
        padding: 6px 8px;
    }
}

/* IPC Lab Section */
.ipc-lab-section {
    background: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 200px;
}

.ipc-lab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 2rem;
}

.ipc-lab-logo {
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.ipc-lab-image {
    max-width: 70%;
    height: auto;
    border-radius: 15px;
}


.ipc-lab-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ipc-lab-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #848487;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.ipc-lab-text p:last-child {
    margin-bottom: 0;
}

/* Responsive para IPC Lab */
@media (max-width: 768px) {
    .ipc-lab-section {
        padding: 3rem 0;
    }
    
    .ipc-lab-content {
        gap: 1.5rem;
    }
    
    .ipc-lab-text p {
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ipc-lab-section {
        padding: 2em 0;
        margin-bottom: 20px;
    }
    
    .ipc-lab-content {
        gap: 1rem;
    }
    
    .ipc-lab-text p {
        font-size: 0.95rem;
    }
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿QuÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â© hacemos? Section */
.que-hacemos-section {
    background: #ffffff;
    position: relative;
    width: auto;
    margin-left: calc(-50vw + 50%);
    overflow: visible;
}

.que-hacemos-content {
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    overflow: visible;
}

.que-hacemos-image {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: calc(100% + 200px);
    z-index: 10;
    top: -149px;
}

.grupo-image {
    width: 1000px;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
}

.que-hacemos-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(90deg, #cf058e 0%, #0f0260 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-text {
    text-align: left;
    color: white;
    margin-top: 245px;
    width: 100%;
    max-width: 950px;
}

.que-hacemos-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    font-family: 'ViceCitySans', Arial, sans-serif;
}

.que-hacemos-subtitle {
    font-size: 2.0rem;
    font-weight: 600;
    margin-top: -20px;
    font-family: 'ViceCitySans', Arial, sans-serif;
}

/* Responsive para ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿QuÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â© hacemos? */
@media (max-width: 768px) {
    .que-hacemos-content {
        height: auto;
    }
    .que-hacemos-image { top: -60px; }
    
    .que-hacemos-overlay {
        height: 60%;
    }
    
    .grupo-image {
        width: 100%;
        max-width: 600px;
    }
    
    .que-hacemos-title { font-size: 1.6rem; }
    
    .que-hacemos-subtitle { font-size: 1.1rem; margin-top: 0; }
    
    .overlay-text {padding: 1.5rem;margin-top: 0;text-align: center;max-width: 680px;}
}

@media (max-width: 480px) {
    .que-hacemos-content {
    }
    .que-hacemos-image {top: auto;height: auto;}
    
    .que-hacemos-overlay {
        height: 49%;
        position: relative;
        margin-top: -68px;
    }
    
    .grupo-image {
        width: 96%;
    }
    
    .que-hacemos-title {font-size: 1.4rem;}
    
    .que-hacemos-subtitle { font-size: 1rem; margin-top: 0; }
    
    .overlay-text {margin-top: 57px;margin-bottom: 35px;text-align: center;padding-bottom: 0;}
}

/* Servicios Section */
.servicios-section {
    background: #e3f2fd;
    text-align: center;
    padding-bottom: 143px;
    padding-top: 60px;
}

.servicios-content {
    max-width: 1200px;
    margin: 0 auto;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.servicio-item {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    cursor: pointer;
    padding: 0;
}




.servicio-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive para Servicios */
@media (max-width: 768px) {
    .servicios-section {
        padding: 3rem 0;
    }
    
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .servicio-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .servicios-section {
        padding: 0rem 0;
    }
    
    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }
    
    .servicio-item {
        padding: 1rem;
    }
}

/* ================================
   ESTILOS PARA LOGIN AULA VIRTUAL
   ================================ */

/* Reset para la pÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡gina de login */
body.login-aula {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Arial', sans-serif;
    color: white;
}

/* Header especÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­fico para login_aula.html */
body.login-aula .header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background-color: white;
}

body.login-aula .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo izquierdo especÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­fico para login_aula.html */
body.login-aula .logo-left {
    display: flex;
    align-items: center;
}

body.login-aula .logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    background-color: #ffffff;
}

/* NavegaciÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³n derecha especÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­fica para login_aula.html */
body.login-aula .nav-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

body.login-aula .nav-link {
    color: #0045a0;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-size: 14px;
}

body.login-aula .nav-link.register {
    background-image: url('img/logo_agregar.png');
    background-position: 94% 100%;
    padding-top: 0;
    height: 32px;
    padding-top: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

body.login-aula .nav-link.login {background-image: url(img/logo_ingresar.png);background-position: 90% 100%;padding-top: 0;height: 32px;padding-top: 20px;background-size: contain;background-repeat: no-repeat;}



/* Contenido principal especÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­fico para login_aula.html */
body.login-aula .main-content {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-image: url('img/img_login1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-bottom: 92px;
}

/* Contenido principal especÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­fico para login_acreditacion.html */
body.login-acreditacion .main-content {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-image: url('img/img_login2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-bottom: 92px;
}

/* Contenido principal especÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­fico para login_biblioteca.html */
body.login-biblioteca .main-content {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-image: url('img/img_login3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-bottom: 92px;
}

body.login-biblioteca .main-content::before,
body.login-acreditacion .main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Estilos compartidos para todas las pÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡ginas de login */
body.login-acreditacion .header,
body.login-biblioteca .header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background-color: white;
}

body.login-acreditacion .header-content,
body.login-biblioteca .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

body.login-acreditacion .logo-left,
body.login-biblioteca .logo-left {
    display: flex;
    align-items: center;
}

body.login-acreditacion .logo-image,
body.login-biblioteca .logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

body.login-acreditacion .nav-right,
body.login-biblioteca .nav-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

body.login-acreditacion .nav-link,
body.login-biblioteca .nav-link {
    color: #0045a0;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-size: 14px;
}

body.login-acreditacion .nav-link.register,
body.login-biblioteca .nav-link.register {
    background-image: url('img/logo_agregar.png');
    background-position: 94% 100%;
    padding-top: 0;
    height: 32px;
    padding-top: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

body.login-acreditacion .nav-link.login,
body.login-biblioteca .nav-link.login {
    background-image: url(img/logo_ingresar.png);
    background-position: 90% 100%;
    padding-top: 0;
    height: 32px;
    padding-top: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

body.login-acreditacion .hero-section,
body.login-biblioteca .hero-section {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 955px;
}

body.login-acreditacion .hero-title,
body.login-biblioteca .hero-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
    
}
body.login-biblioteca .hero-subtitle {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: white;
    line-height: 0.8;
    width: 294px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}
body.login-acreditacion .hero-subtitle
 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: white;
    line-height: 0.8;
    width: 371px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

body.login-acreditacion .aula-text,
body.login-acreditacion .l-text,
body.login-biblioteca .aula-text,
body.login-biblioteca .l-text {
    color: white;
    line-height: 0.8;
}

body.login-acreditacion .at-symbol,
body.login-biblioteca .at-symbol {
    color: #00ff88;
    font-size: 1.2em;
    position: relative;
}

body.login-acreditacion .at-symbol::before,
body.login-biblioteca .at-symbol::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid #00ff88;
    border-radius: 50%;
    z-index: -1;
}

body.login-acreditacion .login-form-container,
body.login-biblioteca .login-form-container {
    background: transparent;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #ffffff;
}

body.login-acreditacion .login-form,
body.login-biblioteca .login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

body.login-acreditacion .form-group,
body.login-biblioteca .form-group {
    position: relative;
}

body.login-acreditacion .form-group input,
body.login-biblioteca .form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ffffff;
    border-radius: 10px;
    font-size: 16px;
    background: transparent;
    color: white;
    transition: border-color 0.3s ease;
    text-align: center;
}

body.login-acreditacion .form-group input::placeholder,
body.login-biblioteca .form-group input::placeholder {
    color: white;
    text-align: center;
}

body.login-acreditacion .form-group input:focus,
body.login-biblioteca .form-group input:focus {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

body.login-acreditacion .login-btn,
body.login-biblioteca .login-btn {
    background: #ffffff94;
    color: #0045a0;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.login-acreditacion .login-btn:hover,
body.login-biblioteca .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
}

body.login-acreditacion .forgot-password,
body.login-biblioteca .forgot-password {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    transition: color 0.3s ease;
}

body.login-acreditacion .forgot-password:hover,
body.login-biblioteca .forgot-password:hover {
    color: #ffcc29;
}

body.login-acreditacion .bottom-nav,
body.login-biblioteca .bottom-nav {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 1000;
    width: 384px;
    margin-top: 30px;
    margin-bottom: 0px;
    padding-bottom: 0;
}

body.login-acreditacion .bottom-nav-link,
body.login-biblioteca .bottom-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
    font-weight: bold;
}

body.login-acreditacion .bottom-nav-link:hover,
body.login-biblioteca .bottom-nav-link:hover {
    color: #ffcc29;
}

body.login-acreditacion .footer {
     position: relative;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0px 26px;
    margin-top: -36px;
    background: #EC268F;
}

body.login-biblioteca .footer {
position: relative;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0px 26px;
    margin-top: -36px;
    background: #00A1DB;
}

body.login-acreditacion .footer-banner,
body.login-biblioteca .footer-banner {
    padding: 2px 26px;
    border-radius: 30px;
    min-width: 194px;
    text-align: center;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: 800;
}

body.login-acreditacion .footer-text,
body.login-biblioteca .footer-text {
      color: white;
    font-size: 16px;
    text-align: center;
    display: block;
    letter-spacing: 1px;
    margin: 0;
    background-image: url(img/logo_footer_login.png);
    height: 35px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    padding-left: 37px;
    padding-top: 9px;
}

body.login-aula .main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}


/* SecciÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³n hero especÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­fica para login_aula.html */
body.login-aula .hero-section {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 955px;
}

body.login-aula .hero-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

body.login-aula .hero-subtitle {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: white;
    line-height: 0.8;
    width: 224px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

body.login-aula .aula-text, 
body.login-aula .l-text {
    color: white;
    line-height: 0.8;
}

body.login-aula .at-symbol {
    color: #00ff88;
    font-size: 1.2em;
    position: relative;
}

body.login-aula .at-symbol::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid #00ff88;
    border-radius: 50%;
    z-index: -1;
}

/* Formulario de login especÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­fico para login_aula.html */
body.login-aula .login-form-container {
    background: transparent;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #ffffff;
}

body.login-aula .login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

body.login-aula .form-group {
    position: relative;
}

body.login-aula .form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ffffff;
    border-radius: 10px;
    font-size: 16px;
    background: transparent;
    color: white;
    transition: border-color 0.3s ease;
    text-align: center;
}

body.login-aula .form-group input::placeholder {
    color: white;
    text-align: center;
}

body.login-aula .form-group input:focus {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

body.login-aula .login-btn {
    background: #ffffff94;
    color: #0045a0;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.login-aula .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
}

body.login-aula .forgot-password {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    transition: color 0.3s ease;
}

body.login-aula .forgot-password:hover {
    color: #ffcc29;
}

/* NavegaciÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³n inferior especÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­fica para login_aula.html */
body.login-aula .bottom-nav {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 1000;
    width: 384px;
    margin-top: 30px;
    margin-bottom: 0px;
    padding-bottom: 0;
}

body.login-aula .bottom-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s ease;
    font-weight: bold;
}

body.login-aula .bottom-nav-link:hover {
    color: #ffcc2a;
}

/* Footer especÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­fico para login_aula.html */
body.login-aula .footer {
    position: relative;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0px 26px;
    margin-top: -36px;
}

body.login-aula .footer-banner {
    padding: 2px 26px;
    border-radius: 30px;
    min-width: 174px;
    text-align: center;
    font-family: 'ViceCitySans', Arial, sans-serif;
    font-weight: 800;
}

body.login-aula .footer-text {
    color: white;
    font-size: 16px;
    text-align: center;
    display: block;
    letter-spacing: 1px;
    margin: 0;
    background-image: url('img/logo_footer_login.png');
    height: 35px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    padding-left: 37px;
    padding-top: 9px;
}


/* Responsive específico para login_aula.html */
@media (max-width: 768px) {
    body.login-aula .header-content {
        padding: 0 1rem;
    }
    
    body.login-aula .logo-image {
        height: 40px;
        max-width: 150px;
    }
    
    body.login-aula .nav-right {
        gap: 1rem;
    }
    
    body.login-aula .nav-link {
        font-size: 12px;
        padding: 0.4rem 0.8rem;
    }
    
    body.login-aula .hero-title {
        font-size: 2rem;
    }
    
    body.login-aula .hero-subtitle {
        font-size: 3rem;
    }
    
    body.login-aula .login-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    body.login-aula .bottom-nav {
        flex-direction: column;
        gap: 1rem;
        bottom: 1rem;
    }
    
    body.login-aula .footer-banner {
        padding: 0.6rem 1.5rem;
        min-width: 150px;
    }
    
    body.login-aula .footer-text {
        font-size: 14px;
    }
}

/* ===== Alertas de contacto (frontend) ===== */
.contact-messages {
    padding: 1rem 0;
}
.contact-messages .alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.contact-messages .alert i {
    font-size: 1.1rem;
}
.contact-messages .alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}
.contact-messages .alert-error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-left: 4px solid #dc3545;
}
.contact-messages .alert ul {
    margin: 0;
    padding-left: 1.25rem;
}

/* Ajuste del bloque del formulario para convivir con alertas */
.potenciar {
    padding-top: 0.5rem;
}

/* Galería detalle (full ancho) */
.galeria-detail {
  padding: 2rem 1rem;
  margin-bottom: 95px;
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.galeria-item {
  margin: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  overflow: hidden;
}
.galeria-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.galeria-caption {
  padding: .75rem 1rem;
  color: #2c3e50;
}
.galeria-item-description {
  color: #7f8c8d;
  margin-top: .35rem;
  display: none; /* ocultar descripción en detalle por solicitud */
}

/* --- Hover indicador de descarga PDF en triggers de registro --- */
.registro-trigger {
  position: relative;
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.registro-trigger img {
  display: block;
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  z-index: 1; /* imagen debajo del overlay */
}

.registro-trigger:hover img,
.registro-trigger:focus img {
  transform: scale(1.01);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  filter: blur(1px);
}

/* overlay ::before eliminado */

/* estados hover ::before eliminados */

.registro-trigger::after {
  content: attr(data-hint);
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  background: #e53e3e; /* rojo para PDF */
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  /* ícono de descarga a la izquierda */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpath d='M7 10l5 5 5-5'/%3E%3Cpath d='M12 4v11'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px 50%;
  background-size: 18px 18px;
  padding: 8px 14px 8px 38px; /* espacio para ícono */
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.98);
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,.24);
  pointer-events: none;
  z-index: 3; /* etiqueta por encima del overlay */
}

.registro-trigger:hover::after,
.registro-trigger:focus::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.registro-trigger:focus {
  outline: 2px solid #e53e3e;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .registro-trigger img { transition: none; }
  .registro-trigger::after { transition: none; }
}

/* Ajustes específicos para botón debajo de la imagen en "Más Seguros" */
.mas-seguro-actions {
  margin-top: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.mas-seguro-actions .registro-trigger {background-color: #cf058e;color: #fff;border: none;padding: 6px 20px;border-radius: 50px;font-size: 14px;font-weight: 500;cursor: pointer;transition: background-color 0.3s ease;}
button.registro-trigger i {
    font-size: 16px;
    vertical-align: middle;
}
button.registro-trigger svg {
    height: 25px;
    font-size: 13px;
    fill: currentColor;
    vertical-align: middle;
}
.mas-seguro-actions .registro-trigger::after {
  content: none;
}
li.nav-cta a:hover {
    color: white;
}
.nav-cta a.active {
        color: #ffffff !important;
    font-weight: 600;
}
.mas-seguro-actions .registro-trigger:hover,
.mas-seguro-actions .registro-trigger:focus {
  background: #e61584;
}
