.selector-for-some-widget {
    box-sizing: content-box;
}

/*@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');*/

:root {
    --primary-color: #E9521D;
    --secundary-color: #58595a;
    --terciary-color: #98989b;
    --header-height: 115px;
    --header-height-mobile: 80px;
    --border-radius: 2px;
    --nav-h: 115px;
}

/*
section, [data-anchor] {
    scroll-margin-top: var(--nav-h); 
}
*/
/*
.anchor-target {
    scroll-margin-top: var(--nav-h);
}*/
#dynamicForm {
    scroll-margin-top: 200px; /* Altura de tu barra de navegación */
}
body {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 1.2rem;
    padding-top: var(--nav-h);
}
.bg-secondary {
    background-color: var(--terciary-color) !important;
}
h1 {
    color: var(--primary-color);
    font-weight: 100;
    font-style: normal;
}
h2 {
    font-size: 2.5rem;
    font-weight: 300;
    font-style: normal;
    margin-bottom: 3rem;
    text-align: center;       
}
h3 {
    font-size: 1.5rem;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 1rem;
}
h4 {
    /*color: var(--primary-color);*/
    font-size: 1.8rem;
    font-weight: 400;
    font-style: normal;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.btn-primary {
    font-size: 18px;
    background-color: var(--primary-color);
    border: 1px solid transparent;
    border-radius: var(--border-radius);
}
.btn-primary:hover {
    color: var(--primary-color);
    background-color: #ffffff;
    border: 1px solid var(--primary-color);
}
@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 2rem;
        margin-bottom: 10rem auto; 
    }
    h3 {
        font-size: 1.6rem;
    }
}
.myhr {
    border: none; /* Eliminamos el borde predeterminado */
    height: 2px; /* Grosor del `hr` */
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)); /* Difuminado */
    margin: 20px auto; /* Centrarlo con espacio arriba y abajo */
    width: 80%; /* Ajustar el ancho según el diseño */
}
img {
    border-radius: var(--border-radius) !important;
}
iframe {
    border-radius: var(--border-radius);
}

/*SECCIONES GENERAL*/
.mysection {
    max-width: 1000px; /* Ancho máximo en pantallas grandes */
    width: 90%; /* Se adapta en pantallas más pequeñas */
    margin: 3rem auto 4rem auto; /* Centra el contenido */
    text-align: center;
}
.mysection::after {
    content: "";
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px; /* Grosor de la sombra */
    /*background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);*/
}
.mysection p {
    margin: 1.6rem auto;
    text-align: left;  
}
.mysection p .icon-down {
    margin-bottom: 0 !important;
}
.mysection-textleft {
    max-width: 1000px;
    width: 90%; 
    margin: 3rem auto 1rem auto;
    text-align: left;
}
@media (max-width: 1024px) {
    .mysection-textleft {
        width: 85%;
    }
}
@media (max-width: 767px) {
    .mysection-textleft {
        width: 90%;
    }
}
.weather-header {
    display: flex;
    align-items: center;   /* Centrado vertical */
    justify-content: center; /* Centrado horizontal */
    height: 125px !important;          /* Altura definida (importante) */
    width: 100%;           /* Ancho definido */
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    /*border: 1px solid red;   Solo para visualización (puedes quitarlo) */
}
.weather-header h2 {
    margin-top: 100px;
    color: rgb(0, 0, 0);
}
.mysection-textleft h2 {
    text-align: center;
}
.body-politics {
    padding: 4rem auto!important;
    max-width: 1100px; /* Ancho máximo en pantallas grandes */
    width: 90%; /* Se adapta en pantallas más pequeñas */
    margin-bottom: 200px; 
    margin: 0 auto 2rem auto; /* Centra el contenido */
}
.body-politics h1,
.body-politics h2,
.body-politics h3,
.body-politics h4 {
    margin: 3rem auto !important;
}
.volver-link {
    text-decoration: none;
    font-size: 1.5rem;
    color: var(--primary-color);       
}
.volver-link:hover {
    text-decoration: none;
    font-size: 1.5rem;
    color: var(--secundary-color);
}
.volver-link-center {
    text-decoration: none;
    font-size: 1.5rem;
    text-align: justify !important;
}
/*TABLAS PRECIOS*/
.table-responsive {
    margin-bottom: 2.5rem;
}
.table-prices {
    max-width: 800px;
}
.table-bordered th {
    background-color: var(--terciary-color);
    color: white;    
}
.table-bordered .transparent-border {
    background-color: transparent !important;
    border: 1px solid transparent !important;
}
/*TOP BAR - MAIN BAR*/
.top-bar {
    font-size: 1rem;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    will-change: transform;
    transition: transform 0.3s ease;
}
.a-top-bar {
    text-decoration: none;
    color: white;
}
.top-bar.hidden {
    transform: translateY(-100%);
}
.main-bar {
    position: fixed;
    width: 100%;
    top: 40px;
    z-index: 1000;
    background-color: #58595a;
    transition: top 0.3s ease, background-color 0.3s ease;
}
.main-bar.scrolled {
    top: 0;
    background-color: rgba(88, 89, 90, 0.8);
}
/* MENU STYLES */
.navbar {
    justify-content: center;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.7);
}
.navbar-nav {
    margin: 0 auto;
}
.nav-link {
    text-transform: uppercase;
    font-size: 1.1rem !important;
}
.navbar-brand {
    margin-right: 3rem;
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.navbar-brand img {
    width: 60px;
    height: auto;
    transition: transform 0.3s ease;
}
.navbar-brand:hover img {
    transform: scale(1.05);
}
/*LANGUAGE SELECTOR STYLES */
/* Estilos generales del contenedor */
.language-selector {
    color: var(--primary-color);
}
/* Estilo del botón principal */
.language-selector .dropdown-toggle {
    font-size: 20px;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 2rem 0.375rem 0.75rem;
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
}
/* Estilo del menú desplegable */
.language-selector .dropdown-menu {
    background-color: #333; /* Fondo oscuro para coincidir con tu tema */
    border: none;
    min-width: auto;
    border-radius: var(--border-radius);
}
/* Estilo de los items */
.language-selector .dropdown-item {
    color: white;
    font-size: 18px;
    padding: 0.5rem 1rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.language-selector .dropdown-item[style*="none"] {
    display: block !important;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
/* Hover y focus */
.language-selector .dropdown-item:hover,
.language-selector .dropdown-item:focus {
    background-color: var(--primary-color) !important;
    color: white !important;
}
/* Item activo/seleccionado */
.language-selector .dropdown-item.active {
    background-color: var(--primary-color);
}
/*END LANGUAGE SELECTOR STYLES */
/* Main navigation items */
.nav-link {
    font-size: 1.3rem;
    font-weight: 300;
    color: white;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    position: relative;
}
.nav-link:hover, 
.nav-link:focus {
    color: var(--primary-color) !important;
    /*text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);*/
}
/* Dropdown menu styles */
.dropdown-menu {
    background-color: var(--secundary-color);
    border: none;
    border-radius: var(--border-radius);
    margin-top: 0;
    padding: 0.5rem 0;
    will-change: opacity, transform;
    border-top: 2px solid rgba(237, 165, 9, 0.8);
}
.dropdown-item {
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 300;
    transition: all 0.2s ease;
    text-transform: uppercase;
}
/* Estilos para los iconos de dropdown */
.dropdown-item.dropdown-toggle i {
    transition: transform 0.2s ease;
    font-size: 0.8em !important;
}
/* Rotación del icono cuando el submenú está abierto */
.dropdown-submenu.show > .dropdown-toggle i {
    transform: rotate(90deg);
}
.dropdown-item:hover, 
.dropdown-item:focus {
    color: var(--primary-color) !important;
    background-color: var(--dropdown-hover-bg);
}
/* Dropdown arrows */
.nav-item > .dropdown-toggle::after,
.dropdown-submenu > .dropdown-toggle::after {
    content: "›";
    display: inline-block;
    margin-left: 0.5em;
    font-size: 1.2em;
    transition: transform 0.2s ease;
    border: none !important;
    vertical-align: middle;
}
.nav-item > .dropdown-toggle::after {
    transform: rotate(90deg);
}
.nav-item:hover > .dropdown-toggle::after {
    transform: rotate(0deg);
}
/* Submenu dropdown arrow */
.dropdown-submenu > .dropdown-toggle::after {
    position: absolute;
    right: 1rem;
    transform: rotate(0deg);
}
.dropdown-submenu:hover > .dropdown-toggle::after {
    transform: rotate(90deg);
}
/* Nested dropdown styles */
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu > .dropdown-menu {
    top: -10px; /* Ajusta este valor según necesites */
    left: 100%;
    margin-top: 0;
    display: none;
}
/* Hover effects for desktop */
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu,
    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
        animation: fadeIn 0.2s ease;
    }
}
/* Mobile styles */
@media (max-width: 991.98px) {
    .main-bar {
        top: 0 !important;
    }
    body {
        padding-top: 80px;
    }
    .navbar-collapse {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }
    .navbar-collapse.show {
        max-height: 500px;
        opacity: 1;
        padding-top: 15px;
        padding-left: 15px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0));       
        border-top: 2px solid rgba(255, 255, 255, 0.2);
    }
    .dropdown-submenu > .dropdown-menu {
        position: static;
        margin-left: 1rem;
        margin-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    .dropdown-item {
        padding-left: 2rem;
    }
}
/* Animation for dropdown */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Toggler styles */
.navbar-toggler {
    box-shadow: none !important;
    transition: box-shadow 0.3s ease-in-out;
    will-change: box-shadow;
}
.navbar-toggler[aria-expanded="true"] {
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5) !important;
}

/*SECCIÓN VIDEO*/
.video-section {
    position: relative; /* Asegura que el contenido relativo esté bien posicionado */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.7);
}
.video-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%); /* Centra el video */
}
.video-content {
    margin-top: 125px;
    position: relative; /* Para asegurarnos de que no se vea afectado por el video */
    max-width: 90%;
    z-index: 2;
    padding: 40px;
    border-radius: var(--border-radius);
    background: rgba(0, 0, 0, 0.8);
    /*background:  rgba(88, 89, 90, 0.8);*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
/* Móviles */
@media (max-width: 767px) {
    .video-content {
        margin-top: 50px;
        background: rgba(0, 0, 0, 0.5);
        padding: 20px;
    }
    .video-section {
        height: 80vh;
    }
}
/*SPORTS GRID*/
.sports-grid-container {
    padding: 20px;
    width: 100%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sports-grid {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos pasen a la siguiente línea si no caben */
    width: 100%;
    gap: 10px; /* Mayor separación */
    justify-content: center;
}

.sports-grid-item {
    position: relative;            /* Para colocar el <a> a pantalla completa dentro */
    flex: 1 1 calc(20% - 10px);    /* 5 elementos por fila, ajustando el gap */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    background: grey;
    height: 250px;
    transition: transform 0.3s ease-in-out;
    border: 1px solid black;
    text-align: center;
    min-width: 150px;              /* Evita que se hagan demasiado pequeños */
    overflow: hidden;              /* Evita que el zoom desborde */
    cursor: pointer;               /* Indica que es clicable en toda el área */
}

/* El enlace ocupa toda la tarjeta: cualquier click/tap abre el link */
.sports-grid-item a {
    position: absolute;
    inset: 0;                      /* top/right/bottom/left: 0 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent; /* mejora tap en móvil */
}

/* Zoom al pasar el ratón (PC) o al enfocar con teclado */
.sports-grid-item:hover,
.sports-grid-item:focus-within {
    transform: scale(1.1);
}

/* Tablets */
@media (max-width: 1024px) {
    .sports-grid-item {
        flex: 1 1 calc(50% - 10px); /* 3 elementos por fila */
    }
}

/* Móviles */
@media (max-width: 767px) {
    .sports-grid-item {
        flex: 1 1 calc(50% - 10px); /* 2 elementos por fila */
    }
}

/* Móviles muy pequeños */
@media (max-width: 480px) {
    .sports-grid-item {
        flex: 1 1 100%; /* 1 elemento por fila */
    }
}

/* Accesibilidad: reduce animaciones si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce) {
    .sports-grid-item {
        transition: none;
    }
}
.img-flex {
    width: 100%; /* Que ocupe el ancho completo de su columna */
    height: 100%; /* Que cada imagen ocupe el espacio disponible */
    object-fit: cover; /* Recorta la imagen sin deformarla */
    border-radius: var(--border-radius); /* Opcional, bordes redondeados */
}
.d-flex.flex-column {
    height: 100%; /* Hace que las dos imágenes se repartan el espacio vertical */
}
/*CSS DIV WIDGET REVIEWS*/
.WidgetTitle__Header-sc-581bc1ec-2 {
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    font-weight: 300 !important;
    font-style: normal;
    margin-bottom: 1rem;
    text-align: center;  
}
.WidgetTitle__Caption-sc-581bc1ec-3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem !important;
    font-style: normal;
    margin-bottom: 1rem;
    text-align: center;  
}
/*CSS FORMULARIO*/
.contact-container {
    width: 100%;
    max-width: 1200px; /* Opcional: para limitar el ancho en pantallas grandes */
    margin: 0 auto;
    padding: 0 1rem; /* Padding lateral para móviles */
    margin-bottom: 3rem; /* Mismo gap que .contact-items (3rem) */
}
.contact-items {
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem; /* Mismo gap para todos los elementos */
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 3rem; /* Igual que el gap interno */
}
.contact-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem; /* Aumentado para mejor espaciado interno */
    border: 1px solid #000;
    border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem; /* Aumentado para separar icono/texto */
    justify-content: center;
}
.contact-item i {
    font-size: 1.5rem;
}
@media (max-width: 768px) {
    .contact-items {
        flex-direction: column;
        gap: 1rem;
    }
    .contact-item {
        width: 100%;
        min-height: auto; /* Altura automática en móvil */
    }
}
/*estilos parrafo abierto 365 días e iconos sociales*/
.open-hours-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem; /* Igual que .contact-item */
    border: 1px solid #000;
    border-radius: 4px;
    gap: 1rem; /* Coincide con el gap de .contact-item */
}
/* Ajustes para móvil */
.open-text {
    margin: 0; /* Elimina márgenes por defecto del párrafo */
    display: flex;
    align-items: center; /* Centra el texto verticalmente */
    height: 100%; /* Ocupa toda la altura del contenedor */
}
.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center; /* Centra los iconos verticalmente */
}
.social-link {
    color: #000;
    font-size: 1.5rem;
    transition: color 0.3s;
    display: flex;
    align-items: center; /* Centra cada icono verticalmente */
    text-decoration: none;
}
.social-link:hover {
    color: #d1421a;
}
@media (max-width: 768px) {
    .contact-items, 
    .open-hours-social {
        gap: 3rem; /* Reducir gap en móvil */
        margin-bottom: 1.5rem;
    }
    .open-hours-social {
        flex-direction: column;
        text-align: center;
    }
}
/* Formulario */
.form-label {
    font-weight: 500;
}
.form-control,
.form-select {
    border-radius: var(--border-radius);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0px 0px 1px 1px rgba(233, 82, 29, 0.3)!important;
    outline: none !important; 
    /*outline: 1px solid #FFA500 !important;*/
}
.form-control:focus-visible, .form-select:focus-visible {
    box-shadow: 0px 0px 1px 1px rgba(233, 82, 29, 0.3)!important;
}
/*TEL FORM CSS*/
.intl-tel-input, 
.iti input[type="tel"] {
    font-size: 18px;
    height: 38px !important;
    border: none;
}
.iti input[type="tel"] {
    width: 100% !important;
    padding-left: 100px !important;
}
.iti {
    width: 100%;
}
.iti input[type="tel"]::placeholder {
    font-size: 18px;
    color: #888;
}
.iti input[type="tel"]:focus {
    box-shadow: 0px 0px 2px 2px rgba(233, 82, 29, 0.3)!important;
    outline: none !important;
}
.iti__country-list {
    font-size: 18px;
}
.iti__selected-dial-code {
    font-size: 18px;
    font-weight: bold;
}
/* BEGIN FOOTER STYLES */
/* Contenido principal (para empujar el footer abajo) */
main {
    flex: 1;
}
/* Estilos para el footer */
footer {
    background-color: var(--secundary-color);
    color: white;
    padding: 3rem 0 0 0;
    width: 100%;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.footer-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 1rem;
}
.footer-col {
    padding: 0 40px;
    box-sizing: border-box;
}
/* COLUMNA 1 - Ahora con grid 2x2 */
.footer-col-1 { 
    flex: 0 0 50%; 
    max-width: 50%;
}
.footer-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    justify-items: center;
    align-items: center;
}
/* Estilo unificado para todas las imágenes */
.footer-img {
    max-width: 125px;
    height: auto;
    width: 100%;
    object-fit: contain;
}
.footer-col-2, 
.footer-col-3 { 
    flex: 0 0 25%; 
    max-width: 25%; 
}
.footer-title {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0 0 .75rem;
    font-size: 1.3rem;
}
.footer-list { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
}
.footer-list li { 
    margin: .25rem 0; 
}
.footer-list a {
    font-weight: 400;
    color: rgba(255, 255, 255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.1rem;
}
.footer-list a:hover {
    color: var(--primary-color);
}
.footer-bottom {
    background-color: var(--secundary-color);
    padding: 1rem 0;
    width: 100%;
}
.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}
.footer-links {
    margin-bottom: 0.5rem;
}
.footer-links a {
    font-size: 16px;
    color: rgba(255, 255, 255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 0.5rem;
}
.footer-links a:hover {
    color: var(--primary-color);
}
.footer-copy { 
    font-size: .9rem; 
    color: #ddd; 
    margin-top: 0.5rem; 
}
@media (max-width: 768px) {
    .footer-col-1,
    .footer-col-2,
    .footer-col-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .footer-images-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin: 0 auto;
        max-width: 250px;
    }
    /*
    .footer-img {
      max-width: 80px;
    }*/
    .footer-col-2 .footer-list,
    .footer-col-3 .footer-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-title { 
        margin-top: 1rem; 
    }
    .footer-col-2,
    .footer-col-3 {
        display: none;
    }
}
/* END FOOTER STYLES */
.section-form {
    /*max-width: 1000px; /* Ancho máximo en pantallas grandes */
    width: 100%; /* Se adapta en pantallas más pequeñas */
    /*margin: 3rem auto 4rem auto; /* Centra el contenido */
    text-align: center;
    background-image: url(../images/background_image1.jpg);
    background-size: cover;
    background-position: center;
}
.section-form .overlay {
    padding: 5rem;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6); /* negro con 40% opacidad */
    z-index: 1;
}
.custom-form {
    background-color: rgba(155, 155, 155, 0.85);
    text-align: left;
    border-radius: 0px;
    padding: 3rem 2rem !important;
    width: 50%;
    z-index: 2;
}
.custom-form-partners {
    background-color: rgba(155, 155, 155, 0.85);
    text-align: left;
    border-radius: 0px;
    padding: 3rem 2rem !important;
    width: 80%;
    z-index: 2;
}
@media (max-width: 768px) {
    .section-form .overlay {
        padding: 2rem 2rem;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.6); /* negro con 40% opacidad */
        z-index: 1;
    }
    .custom-form {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.5rem; /* Más padding en móvil para mejor aspecto */
        width: 100%;
    }
    .custom-form-partners {
        background-color: rgba(155, 155, 155, 0.85);
        text-align: left;
        border-radius: 0px;
        padding: 3rem 2rem !important;
        width: 100%;
        z-index: 2;
    }
}
.form-link-privacy {
    text-decoration: none;
}
/* Estilos para los mensajes del formulario */
.form-message {
    margin: 20px 0;
    padding: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    /*temp debugging..*/
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.form-message p {
    margin: 0 auto;
}
.form-message .alert {
    padding: 15px;
    margin-bottom: 0;
    border: 1px solid transparent;
    border-radius: 4px;
}
.form-message .alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.form-message .alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
.form-message .alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
/*HERO SECTION*/
.hero-video {
    position: relative; /* Asegura que el contenido relativo esté bien posicionado */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 65vh;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.7);
}
.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%); /* Centra el video */
}
.hero-video-content {
    position: relative; /* Para asegurarnos de que no se vea afectado por el video */
    max-width: 90%;
    z-index: 2;
    padding: 30px 40px;
    border-radius: var(--border-radius);
    background: rgba(0, 0, 0, 0.6);
    /*background:  rgba(88, 89, 90, 0.8);*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(243, 240, 240);
    text-align: center;
}
.hero-img-content {
    position: relative; /* Para asegurarnos de que no se vea afectado por el video */
    max-width: 90%;
    z-index: 2;
    padding: 30px 40px;
    /*border-radius: 400px;*/
    background-color: rgba(0, 0, 0, 0.7);
    /*background:  rgba(88, 89, 90, 0.8);*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    text-align: center;
}
/*HERO BACKGROUNDS CONFIG*/
/* Estilos generales para todas las secciones hero */
.hero-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.2);
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /*color: white;*/
  position: relative;
  /*box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.7);*/
  /*border-bottom: 1px solid grey;*/
  z-index: 1;
}

.hero-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: rgba(0, 0, 0, 0.4);*/
  z-index: 0;
}

.hero-img-content {
  position: relative;
  z-index: 2;
}

/* Fondos específicos */
.hero-windsurf {
  background-image: url('../images/windsurflessons.jpg');
}

.hero-kitelessons {
  background-image: url('../images/kitelessons.jpg');
}
.hero-kiterent {
  background-image: url('../images/kiterent.jpg');
}

.hero-surfrent {
  background-image: url('../images/surfrent.jpg');
}

.hero-wingfoillessons {
  background-image: url('../images/wingfoillessons.jpg');
}
.hero-wingfoilrent {
  background-image: url('../images/wingfoilrent.jpg');
}
.hero-surfskate {
  background-image: url('../images/surfskate.jpg');
}

.hero-aboutus {
  background-image: url('../images/heroaboutus.jpg');
}




/*ACCORDION AOUR VALUES*/
.values-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}
.values-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}
.value-columns {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: center;
}
.value-item {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 20px;
    /*box-shadow: 0 4px 8px rgba(0,0,0,0.1);*/
}
.value-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}
.value-header i {
    margin-right: 15px;
    font-size: 1.6rem;
    transition: transform 0.3s ease;
    color: #E9521D;
}
.value-header h3 {
    margin: 0;
    font-size: 1.6rem;
    color: #000000;
}
.value-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 30px;
    text-align: left;
}
.value-content ul {
    list-style-type: none;
    padding: 0;
    margin: 15px 0 0 0;
}
.value-content li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    color: black;
}
.value-content li:before {
    content: "•";
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 2px;
}
.value-item.active {
    background: #f9f9f9;
}
.value-item.active .value-content {
    max-height: 500px; /* Ajusta según el contenido */
}
.value-item.active .value-header i {
    transform: rotate(45deg);
}
/*TEAM SECTION*/
.team-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.team-member {
    position: relative;
    width: calc(50% - 20px);
    height: 300px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
}
.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.member-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    box-sizing: border-box;
    /* Transición más suave y con delay */
    transition: bottom 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99) 0.05s;
    /* Añadido para optimización */
    transform: translateZ(0);
}
.team-member:hover .member-info {
    bottom: 0;
}
.member-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}
.member-detail {
    margin-bottom: 8px;
    font-size: 0.9rem;
}
@media (min-width: 900px) {
    .team-member {
        width: calc(25% - 20px);
    }
}
@media (max-width: 600px) {
    .team-member {
        width: 100%;
    }
}
/*PARTNERS SECTION*/
.partners-row {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}
.partners-row img {
    height: 150px;
    width: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}
@media (max-width: 768px) {
    .partners-row {
        margin-top: 2rem;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    .partners-row img {
        height: 125px;
        width: auto;
        object-fit: contain;
        transition: filter 0.3s ease;
    }
}
/*WIDGETS CSS*/
.widget-container {
    box-shadow: 0em 0em 0.3em black;
}
.year-container h2 {
    font-size: 24px;
}
.year-container span {
    font-size: 20px !important;
}
.chart-container {
    position: relative;
    width: 88%;
    max-width: 600px;
    margin: auto;
    background: rgba(152,152,155,0.3);
}
.toggle-button {
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: background-color 0.3s, opacity 0.3s;
}
.chart-container {
    background: rgba(50, 50, 50, 0.1);
    width: 88%;
    margin: auto;
    padding: 15px;
}
.active {
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
}
.inactive {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
}
.toggle-button:hover {
    opacity: 0.8;
}
#tempChart {
    width: 100% !important;
    max-height: 400px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
/*DUAL PIC CSS*/
.option-container {
    display: flex;
    height: calc(100vh - var(--header-height));
}
.option {
    position: relative;
    flex: 1;
    overflow: hidden;
    transition: all 0.5s ease;
    background-size: cover;
    background-position: center;
}
/*
.option-left {
    background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
}
.option-right {
    background-image: url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
}
*/
.option-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}
.option:hover .option-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}
.option-text {
    color: white;
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
.option:hover .option-text {
    transform: scale(1.1);
}
.option-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
@media (max-width: 768px) {
    .option-container {
        flex-direction: column;
        height: calc(100vh - var(--header-height-mobile));
    }
    .option-text {
        font-size: 2.5rem;
    }
}
/*CONFIGURACIÓN BOTÓN DE WHATSAPP*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
  text-decoration: none;
}
.whatsapp-float i {
  line-height: 1;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}






