/* root: definir paleta de colores y tipografia*/
:root {
    --azulmedio: #19597c;
    --azuloscuro: #05384e;
    --azulclaro: #2b74a5;
    --blanco: #ffffff;
    --grisclaro: #e1e1edef;
    --transicion: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial Black', Gadget, sans-serif;
    background-color: var(--blanco);
    color: #0a0a0a;
    line-height: 1.6;
    padding-top: 100px; /* Espacio para la barra superior fija */
}


.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;/* Espacio para la barra superior fija */
}

/* Barra Superior */
.top-bar {
    background-color: var(--azuloscuro);
    color: var(--blanco);
    padding: 0;
    box-shadow: 0 4px 12px rgba(10, 31, 68, 0.15);
    position: fixed;
    z-index: 1000;
    margin-bottom: 0;
    top : 0;
    width: 100%;

}

.nav-container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Logo */
.logo-container img {
    align-items: left;
    padding: 0;
    height: 100px;
}

/* Sección About - Bloque 01 ¿Quiénes Somos? */
.about-section {
    background-color: var(--blanco);
    padding: 60px 30px;
    margin-bottom: 40px;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 800px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding-right: 20px;
}

.about-content h2 {
    color: var(--azulmedio);
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.about-content p {
    font-family: 'Monospace', Gadget, sans-serif;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 35px;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background-color: var(--azulmedio);
    color: var(--blanco);
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transicion);
    cursor: pointer;
    border: 2px solid var(--azulmedio);
}

.cta-button:hover {
    background-color: var(--azuloscuro);
    border-color: var(--azuloscuro);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(5, 56, 78, 0.3);
}

/* Secciones Comerciales */
.commercial-section {
    padding: 80px 30px;
    background-color: var(--blanco);
}

.commercial-section:nth-child(even) {
    background-color: var(--grisclaro);
}

.commercial-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.commercial-section.reverse .commercial-container {
    direction: rtl;
}

.commercial-section.reverse .commercial-content,
.commercial-section.reverse .commercial-image {
    direction: ltr;
}

.commercial-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(25, 89, 124, 0.2);
    height: 500px;
}

.commercial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.commercial-image:hover img {
    transform: scale(1.08);
}

.image-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--azulmedio), var(--azuloscuro));
    color: var(--blanco);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(25, 89, 124, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.commercial-content {
    padding: 20px;
}

.section-number {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--azulmedio);
    background-color: rgba(25, 89, 124, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.commercial-content h2 {
    font-size: 2.8rem;
    color: var(--azuloscuro);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.commercial-content > p {
    font-family: 'Monospace', Gadget, sans-serif;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 35px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 15px;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background-color: rgba(25, 89, 124, 0.05);
    transform: translateX(10px);
}

.benefits-list i {
    color: var(--azulmedio);
    font-size: 1.3rem;
}

.commercial-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--azulmedio), var(--azuloscuro));
    color: var(--blanco);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(25, 89, 124, 0.3);
    position: relative;
    overflow: hidden;
}

.commercial-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.commercial-btn:hover::before {
    left: 100%;
}

.commercial-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(25, 89, 124, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .commercial-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .commercial-section.reverse .commercial-container {
        direction: ltr;
    }
    
    .commercial-image {
        height: 350px;
    }
    
    .commercial-content h2 {
        font-size: 2rem;
    }
    
    .image-badge {
        top: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Footer */
.footer {
    background-color: var(--azuloscuro);
    color: var(black);
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

.footer-subtitle {
    margin-top: 10px;
    opacity: 0.8;
}
p{
    color: #ffffff;
    /* tipo de letra*/
    font-family: 'Monospace', Gadget, sans-serif;
    /* tamaño de letra*/
    font-size: 16px;
    /* negrita*/
    font-weight: bold;

}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--gray-light);
    color: #333;
    line-height: 1.6;
}

.contenido_pagina{
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    
}
.parte_superior{
    background-color:#19597c;
    color: var(--light);
    padding: 20px;
    box-shadow: 0 4px 12px rgba(10, 31, 68, 0.15);
    position: relative;
    z-index: 1000;
    
}


.logo_ps img {
    height: 20px;
    margin-right: 0;
}


@media (max-width: 768px) {
    .commercial-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .commercial-section.reverse .commercial-container {
        direction: ltr;
    }
}

/* ========================================
   SECCIÓN EQUIPO (04) - ESTILO MODERNO
   ======================================== */
.team-section {
    background: linear-gradient(135deg, var(--grisclaro) 0%, #f8f9fa 100%);
    padding: 100px 30px;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--azulmedio), var(--azuloscuro));
    color: var(--blanco);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(25, 89, 124, 0.3);
}

.team-header h2 {
    font-size: 3.2rem;
    color: var(--azuloscuro);
    margin-bottom: 15px;
    font-weight: 800;
    margin-top: 0;
}

.team-header p {
    font-family: 'Monospace', Gadget, sans-serif;
    font-size: 1.25rem;
    color: #666;
}

.team-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.team-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(25, 89, 124, 0.25);
    height: 500px;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-image-wrapper:hover img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(5, 56, 78, 0.95) 0%, transparent 100%);
    padding: 40px 30px;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    color: var(--blanco);
}

.stat-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.85;
}

.team-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    background: var(--blanco);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(25, 89, 124, 0.2);
}

.feature-icon {
    background: linear-gradient(135deg, var(--azulmedio), var(--azuloscuro));
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--blanco);
    font-size: 1.6rem;
}

.feature-box h3 {
    font-size: 1.4rem;
    color: var(--azuloscuro);
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-box p {
    font-family: 'Monospace', Gadget, sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.team-cta {
    text-align: center;
}

.team-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--azulmedio), var(--azuloscuro));
    color: var(--blanco);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(25, 89, 124, 0.35);
    transition: all 0.4s ease;
}

.team-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(25, 89, 124, 0.45);
}

.team-btn i {
    transition: transform 0.3s ease;
}

.team-btn:hover i {
    transform: translateX(5px);
}

/* ========================================
   SECCIÓN ALIADOS (06) - CARRUSEL FLUIDO Y MODERNO
   ======================================== */
.partners-carousel-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f1f7 100%);
    padding: 120px 30px;
    position: relative;
    overflow: hidden;
}

.partners-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
}

.partners-carousel-header {
    text-align: center;
    margin-bottom: 70px;
}

.partners-carousel-header h2 {
    font-size: 3.5rem;
    color: var(--azuloscuro);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.partners-carousel-header p {
    font-family: 'Monospace', Gadget, sans-serif;
    font-size: 1.3rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    margin-bottom: 50px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(225, 225, 222, 0.3) 0%, rgba(225, 225, 222, 0.1) 100%);
    border-radius: 25px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.partners-carousel {
    display: flex;
    gap: 20px;
    padding: 40px;
    position: relative;
    animation: scrollLogos 20s linear infinite;
}

.carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    flex-shrink: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.logo-container-carousel {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: transparent;
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
}

.logo-container-carousel::before { content: none; }

.logo-container-carousel:hover::before {
    opacity: 0;
}

.logo-container-carousel:hover {
    transform: translateY(-12px) scale(1.05);
}

.logo-container-carousel img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.95);
}

.logo-container-carousel:hover img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.carousel-cta {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.carousel-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--azulmedio);
    color: var(--blanco);
    padding: 20px 60px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 35px rgba(25, 89, 124, 0.35);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.carousel-btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.carousel-btn-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.6s ease;
    opacity: 0;
    z-index: 0;
}

.carousel-btn-cta:hover::before {
    left: 100%;
}

.carousel-btn-cta:hover::after {
    top: -25%;
    right: -25%;
    opacity: 1;
}

.carousel-btn-cta:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(25, 89, 124, 0.5);
    letter-spacing: 1px;
}

.carousel-btn-cta:active {
    transform: translateY(-4px) scale(1.02);
}

/* Responsive Carrusel Moderno */
@media (max-width: 1200px) {
    .partners-carousel {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        padding: 35px;
    }
    
    .carousel-item {
        height: 130px;
    }
}

@media (max-width: 768px) {
    .partners-carousel-section {
        padding: 80px 20px;
    }
    
    .partners-carousel-header h2 {
        font-size: 2.5rem;
    }
    
    .partners-carousel-header p {
        font-family: 'Monospace', Gadget, sans-serif;
        font-size: 1.1rem;
    }
    
    .partners-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 25px;
    }
    
    .carousel-item {
        height: 110px;
    }
    
    .logo-container-carousel {
        padding: 12px;
    }
    
    .carousel-btn-cta {
        padding: 16px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partners-carousel {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
    }
    
    .carousel-item {
        height: 100px;
    }
}

/* Responsive para Team */
@media (max-width: 768px) {
    .team-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-header h2 {
        font-size: 2.2rem;
    }
    
    .team-image-wrapper {
        height: 400px;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Menú desplegable elegante */
.menu_desplegable {
    position: relative;
}

.boton_menu {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, transform 0.12s;
}

.boton_menu:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.contenido_menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: white;
    color: #14202b;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(20,30,40,0.12);
    overflow: hidden;
    min-width: 200px;
    transform-origin: top right;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transition: all 160ms ease;
    z-index: 1200;
}

.menu_desplegable:focus-within .contenido_menu,
.menu_desplegable.open .contenido_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.menu_item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    color: inherit;
    text-decoration: none;
    border-top: 1px solid rgba(0,0,0,0.04);
    transition: background 0.15s ease;
}

.menu_item:first-child { border-top: none; }
.menu_item:hover { background: rgba(30,45,60,0.04); }
.menu_item i { width: 22px; color: #1f77a1; }
/* Botón flotante WhatsApp */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-message {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 10px #1f77a1;
    max-width: 200px;
    position: relative;
    animation: slideIn 0.5s ease-out;
}

.whatsapp-message p {
    font-family: 'Monospace', Gadget, sans-serif;
    margin: 0;
    font-size: 12px;
    color: #000000;
    line-height: 1.4;
}

/* Flecha del cuadro de mensaje */
.whatsapp-message::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-floating {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-floating i {
    animation: pulse 2s infinite;
}

/*modo oscuro: cambiar color del mensaje de whatsapp*/

.dark-theme .whatsapp-message p{
    font-family: 'Monospace', Gadget, sans-serif;
    color: #ffffff;
}
.dark-theme .about-content h2{
    color: #ffffff ;
}

.dark-theme .commercial-section {
    background: #1a1a1a;
}
.dark-theme .commercial-section h2 {
    color: #ececec;
}
.dark-theme .commercial-section p {
    color: rgb(170, 168, 168);
}
.dark-theme .commercial-section li {
    color: rgb(0, 0, 0);
    background: #e9e7e7;
}

.dark-theme .team-header h2 {
    color: #ffffff ;
}

.dark-theme .feature-box {
    background: #4b4a4a;
}
.dark-theme .feature-box h3 {
    color: #ffffff;
}
.dark-theme .feature-box p {
    color: #bbb7b7;
}

.dark-theme .partners-carousel-section{
    background: #202020;
}

.dark-theme .partners-carousel-section p{
    color: #c0c0c0;
}
.dark-theme .partners-carousel-section h2{
    color: #ffffff;
}



.dark-theme .team-section{
    background: #202020 ;
}


@media (max-width: 768px) {
  .whatsapp-floating {
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-floating i {
    font-size: 24px;
  }
}



/* Hero Section - Welcome */
.hero-welcome {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #19597c 0%, #2b74a5 100%);
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 89, 124, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: var(--blanco);
}

.hero-logo {
    height: 520px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    display: block;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-family: 'Monospace', Gadget, sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Sección Bloque 02: Evento */
.event-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.event-banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.event-banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 56, 78, 0.3);
    top: 0;
    left: 0;
    z-index: 1;
}

.event-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--blanco);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.event-banner-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.event-banner-content p {
    font-family: 'Monospace', Gadget, sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--azulmedio);
    color: var(--blanco);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: var(--azulclaro);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}