html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}


article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    margin: 0;
    padding-top: 60px;
    line-height: 1.5;
    font-family: "Open Sans", sans-serif;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,900');

/***** REGLAS GLOBALES ******/


/*******************
REGLAS GLOBALES
********************/

* {
    box-sizing: border-box;
}

img {
    width: 100%;
    display: block;
    height: auto;

}

a {
    color: inherit;
    text-decoration: inherit;
}


strong {
    font-weight: 700;
}

.hidden {
    display: none;
}

/***** Tipografías *****/
@font-face {
    font-family: 'icomoon';
    src: url("fonts/icomoon_v1-74eF_2z.woff");
}


/***** elementos comunes ****/


h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.home-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-image: linear-gradient(180deg, #2A7B9B, #13A1A8);
    -webkit-background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.gradient {
    background-image: linear-gradient(75deg, #2A7B9B, #13A1A8, #2A7B9B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container-m {
    max-width: 1200px;
    margin: 0 auto;

}


.container-s {
    max-width: 700px;
    margin: 0 auto;
}


.title-intro {
    margin-bottom: 3rem;
    text-align: center
}


/***** HEADER ******/


* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}


/* header */

.icon:before {
    font-family: 'icomoon' !important;
}

.icon-check:before {
    content: "\e900";
}

.icon-cross:before {
    content: "\e901";
}

.icon-user:before {
    content: "\f007";
    font-weight: 400;
    margin-right: 5px;

}

/*
.icon-power-off:before {
    content: "\f011";
    font-weight: 400;
    margin-right: 5px;
}
*/

.icon-clock-o:before {
    content: "\f017";
}

.icon-map-marker:before {
    content: "\f041";
}

.icon-calendar:before {
    content: "\f073";
}

.icon-facebook-square:before {
    content: "\f082";
}

.icon-phone:before {
    content: "\f095";
}

.icon-envelope:before {
    content: "\f0e0";
}

.icon-angle-double-left:before {
    content: "\f100";
}

.icon-angle-left:before {
    content: "\f104";
}

.icon-angle-right:before {
    content: "\f105";
}

.icon-calendar-o:before {
    content: "\f133";
}

.icon-youtube-play:before {
    content: "\f16a";
}

.icon-instagram:before {
    content: "\f16d";
}

.icon-user-circle:before {
    content: "\f2bd";
}

.icon-user-circle-o:before {
    content: "\f2be";
}

.icon-enter:before {
    content: "\ea13";
}


.header {
    background-color: white;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .2);
    position: fixed;
    width: 100%;
    z-index: 30;
    top: 0;
}

/* Aplicar display: flex a header-wrapper y reordenar sus elementos */
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Aseguramos el orden deseado */
.header-links {
    order: 3;
}

.menu {
    order: 2;
}

.login-nav {
    order: 3;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;

}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.header li a {
    display: block;
    padding: 20px 20px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-image: linear-gradient(75deg, #2A7B9B, #13A1A8, #2A7B9B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 15px;

}


.header li a
.header li a:hover,
.header .menu-btn:hover {
    background: linear-gradient(90deg, #b28c0d, #d09045, #eaa956, #b0703a); /* Colores más brillantes */;
    -webkit-background-clip: text;
    transition: .3s;
}


.nav-hazte-socio a {
    background: #2A7B9B !important;
    padding: 10px 1rem;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: white !important;
    background-image: none;
}

.nav-login {
    color: #2A7B9B;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    padding: 0 10px;

}


.nav-login:first-of-type {

    border-right: 1px solid;
}

.header-login .nav-login {
    border-right: 0;
}


.header .logo {
    display: block;
    float: left;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    padding: 10px 10px;
    color: #0000ff;
    font-weight: 900;
    text-decoration: none;
}

.header .logo img {
    max-width: 50px;
}

/* menu */

.header .menu {
    display: none; /* Hide the menu by default */
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    font-weight: 400;
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: .2s ease-out;
    width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}

/* menu btn */

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked ~ .menu {
    display: block; /* Show the menu */
    max-height: 360px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}

.header-links-mobile {
    display: none;
}

.nav-sign-mobile {
    display: none;
}


/* 48em = 768px */

@media (min-width: 48em) {
    .header li {
        float: left;
    }

    .header li a {
        padding: 10px 20px;
    }

    .header .menu {
        display: flex; /* Use flexbox for layout */
        clear: none;
        float: right;
        max-height: none;
        margin-top: 1rem;
    }

    .header .menu-icon {
        display: none;
    }


}

.header li a.nav-login {
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0;
    font-weight: 600;
}

.box {
    max-width: 960px;
    margin: 0 auto;
    min-height: 800px;
    display: grid;
    justify-content: center;
    align-items: center;
}

.box h1 {
    font-size: 3em;
    color: white;
}

/**** page header ***/
.page-title {
    background-attachment: fixed;
    background-size: cover;

    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.page-title .overlay {
    background-color: rgba(15, 73, 97, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-title h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    z-index: 1;
}


/*** START : TABLET ***/
@media screen and (max-width: 768px) {

}

/*** END : TABLET ***/


/*** START : MOBILE ***/
@media screen and (max-width: 768px) {
    .header .menu {
        display: flex;
        justify-content: flex-end;
    }
}

/*** END : MOBILE ***/


/******* HERO ****/

.hero {
    background: url("../../images/front/portada2-Vfvx9H9.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra verticalmente */
    align-items: center; /* Centra horizontalmente */
    text-align: center; /* Alinear el texto en el centro */
    min-height: 800px;


}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Color negro con 50% de opacidad */
    z-index: 0; /* Asegura que el velo esté por encima de la imagen pero detrás del contenido */
}


.hero h1 {
    color: white;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 4rem;
    text-align: center;
    line-height: 1.3;
    margin-block: 2rem;
    z-index: 10;
    text-shadow: 5px 5px 5px black;

}

.hero h1 span {
    display: block;
}


/***** reserva de pistas ****/

.home-reservas {
    text-align: center;
    padding: 8rem 2rem;
}

.home-reservas-box {
    display: flex;
    justify-content: space-between;
}

.home-reservas-box-item {
    margin-right: 1rem;


}


.home-reservas-box-item h4 {
    color: #2A7B9B;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.home-reservas-box-item img {
    margin-bottom: 1rem;
}

/* Normalize buttons */
a.btn-reserva,
button.btn-reserva {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: linear-gradient(90deg, #2A7B9B, #44B399, #13A1A8);
    background-size: 200%;
    background-position: left;
    padding: 1rem 1.4rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-position 0.5s ease, transform 0.3s ease;
}

a.btn-reserva-small,
button.btn-reserva-small {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: linear-gradient(90deg, #2A7B9B, #44B399, #13A1A8);
    background-size: 200%;
    background-position: left;
    padding: .5rem 1rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .8rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-position 0.5s ease, transform 0.3s ease;
}


.btn-reserva, .btn-evento {
    background: linear-gradient(90deg, #2A7B9B, #44B399, #13A1A8);
    background-size: 200%;
    background-position: left;
    padding: 1rem 1.4rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    transition: background-position 0.5s ease, transform 0.3s ease;
    cursor: pointer;
}

.btn-reserva:hover, .btn-evento:hover {
    background-position: right;

}


/***** banner ****/
.banner {
    background: url("../../images/front/hazte-socio-pyfIDKL.jpg") no-repeat center center fixed;
    background-size: cover;
    padding: 8rem 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner h2,
.banner .btn-banner {
    position: relative;
    z-index: 2;

}

.banner h2 {
    margin-bottom: 2rem;
}

.btn-banner {
    background: linear-gradient(90deg, #F5C317, #F5A117, #F5CD17);
    background-size: 200%;
    background-position: left center;
    padding: 15px 1.2rem;
    color: #631706;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
    border: none;
    text-decoration: none;
    transition: background-position 0.5s ease;
    display: inline-block;
    box-sizing: border-box;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
}

.btn-banner:hover {
    background-position: right center;
}


/***** eventos home *****/

.home-eventos {
    padding: 8rem 2rem;

}

.home-eventos-box {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;

}

.home-eventos-box-item {
    margin-right: 1rem;
    width: 30%;
    margin-bottom: 1.5rem;

}

.home-eventos-box-item:nth-child(3n) {
    margin-right: 0;;
}

.home-eventos-item_info {
    background: #eee;
    padding: 1rem 0 0 1rem;
    display: flex;
    flex-direction: column;
}

.home-eventos-item_info p, .home-eventos-item_info h4 {
    margin-right: 1rem;
}

.home-eventos-item_info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.home-evento-date {
    margin-bottom: 1rem;
}

.btn-evento {
    background-position: left center;
    border-radius: 0;
    font-size: 13px;
    align-self: flex-end;

}

.icon-angle-double-right:after {
    content: "\f101"; /* Unicode for the icon */
    font-family: 'icomoon', serif; /* Use the Icomoon font */
    font-size: 1rem; /* Adjust icon size */
    color: inherit; /* Match the button's text color */
    margin-left: 5px;
    vertical-align: baseline;

}


.reserva_formulario {
    padding: 2rem 0;
    margin: 0 auto;
    max-width: 600px;
}

.login-disclaimer {
    text-align: center;
}

.login-disclaimer a {
    text-decoration: underline;
    font-weight: 700;
}

.form-finalizar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

.form-group input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group input:focus {
    outline: none;
    border-color: #2A7B9B;
}

.precio {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.reserva-continuar-modificar {
    display: flex;
    justify-content: center;
}

.reserva-continuar-modificar .btn-reserva {
    display: flex;
    justify-content: center;
    margin:1rem;
}

.reserva-continuar-modificar a.btn-reserva {
    background: grey;
    margin-right: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.btn-login {
    background: linear-gradient(90deg, #F5C317, #F5A117, #F5CD17);
    color: white;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(90deg, #F5A117, #F5C317, #F5A117);
}

.form-actions .btn, .form-submit button {
    background: linear-gradient(90deg, #2A7B9B, #44B399, #13A1A8);
    background-size: 200%;
    background-position: left;
    padding: 10px 1.2rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    transition: 0.5s ease, transform 0.3s ease;
    cursor: pointer;
}

.form-actions .btn:hover {
    background-position: right;
}

.form-group.checkbox-group {
    display: flex;
    gap: 0.5rem;
    flex-direction: row;
}

.form-group.checkbox-group label {
    font-weight: 400 !important;
}

.form-group.checkbox-group input {
    margin-top: 7px;
}


.form-group.checkbox-group label {
    font-size: 14px;
    color: #555;
    font-weight: 400;;
}

.error {
    color: red;
    font-size: 14px;
    text-align: left;
}

.form-errors {
    color: red;
    font-size: 1em;
    text-align: left;
}

/********* RESERVAS ********/

.reserva_title {
    background: url("../../images/front/padel-banner-1-7XnjNeH.jpg");
}


.reserva_form_box {
    padding: 5rem 1rem;
}

.reserva_form {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.form-section {
    margin-bottom: 4rem;
    text-align: center;
    max-width: 32%;
}

.form-section img {
    margin-bottom: 1rem;
}

.form-section h2 {
    font-size: 1.2rem;

    font-weight: 700;
    margin-bottom: 1rem;
    color: black;
    background-image: auto;
    text-transform: capitalize;
}

.reserva-precios {
    margin-bottom: 1rem;
    background: #eee;
    border-radius: 10px;
    padding: 13px 1rem;
    font-size: 16px;
}


.reserva-precios .tarifas {
    font-weight: 700;
    text-align: center;
}


.reserva-precios ul {
    display: flex;
    justify-content: space-between;
}

.reserva-precios ul.tarifa-simple {
    justify-content: center;
    flex-direction: column;
    align-items: center;
}


.reserva-precios li {
    font-size: 14px;
    text-align: left;
    margin-right: 1rem;

}

.reserva-precios ul.tarifa-simple li {
    margin-right: 0;
}


.time-slots {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.slot {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: white;
    width: 45%;
}

.slot span {
    font-size: 12px;
}


.slot.available {
    background: white;
    border: 1px solid #44B399;
    color: #44B399;
}

.slot.available:hover {
    background: #44B399;
    color: white;
    cursor: pointer !important;
}

.slot.selected:hover {
    background: #007BFF;
}

.slot.unavailable {
    background-color: #B0B0B0;
    position: relative;
    overflow: hidden;
}


.slot.selected {
    background-color: #007BFF; /* Blue background for selected slot */
    color: white;
    border: 1px solid #007BFF;
}

.btn-reserva.reserva-continuar {
    display: block;
    max-width: 150px;
    margin: 0 auto;
    text-align: center;


}


.reserva_finalizar_box {
    padding: 5rem 1rem;
}

.reserva_finalizar_datos {
    text-align: center;
    font-weight: 700;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    background: #eee;
    max-width: 600px;
    border-radius: 10px;

}

.reserva_finalizar_datos span {
    display: block;
    font-weight: 400;
}

.reserva_finalizar_datos p {

    margin-right: 2rem;

}

.reserva_evento_finalizar_datos {
    text-align: center;
    font-weight: 700;
    margin: 0 auto;
    margin-bottom: 2rem;
    padding: 1rem 1rem;
    background: #eee;
    max-width: 600px;
    border-radius: 10px;
}

.reserva_evento_finalizar_datos span {
    font-weight: 400;
}

.reserva_evento_finalizar_datos h3 {
    font-size:1.3rem;
    margin-bottom: 1rem;
}

.reserva_evento_finalizar_datos p {
    margin-bottom:.66rem;
}

.inscripcion-pendientes{
    text-align: center;
    font-weight: 700;
    margin: 0 auto;
    margin-bottom: 2rem;
    padding: 1rem 1rem;
    background: #eee;
    max-width: 600px;
    border-radius: 10px;
}

.inscripcion-pendientes ul {
    list-style: none;
    padding: 1rem;
}

.inscripcion-pendientes ul li {
    font-weight:normal;
}

/* Reserva de eventos */

.reserva_eventos_steps .choice-card {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: #f0f5f7; /* Color de fondo suave similar a tu imagen */
    border-radius: 8px;
    border: 1px solid transparent;
    border-left: 6px solid #2a7a9b; /* Borde lateral acentuado */
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    width: 50%;
    margin-bottom:1rem;
}

.reserva_eventos_steps .status-indicator {
    margin-right: 1.25rem;
}

.reserva_eventos_steps .check-icon {
    width: 28px;
    height: 28px;
    background: #fff;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.2s ease;
}

.reserva_eventos_steps .btn-check:checked + .choice-card .check-icon {
    background: #2a7a9b;
    border-color: #2a7a9b;
    color: white;
}

.reserva_eventos_steps .card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.reserva_eventos_steps .card-content .title {
    font-weight: 600;
    color: #2d3748;
    font-size: 1.1rem;
}

.reserva_eventos_steps .arrow-indicator {
    color: #cbd5e0;
    transition: transform 0.2s ease;
}

.reserva_eventos_steps .choice-card:hover {
    background: #e6eef2;
    transform: translateX(4px);
}

.reserva_eventos_steps .choice-card:hover .arrow-indicator {
    transform: translateX(4px);
    color: #2a7a9b;
}

/* Ocultar el input radio original */
.reserva_eventos_steps .btn-check {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}

.reserva_eventos_steps p.option-description {
    font-size: 1rem;
    font-weight: normal;
    color: #6b7280;
}



/****** ACTIVIDAD *******/

.inscripcion-form {
    padding: 5rem 1rem;
}

.actividad_title {
    background: url("../../images/front/padel-banner-2-9N67q6G.jpg");

}


.actividad_dos_columnas {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 5rem 1rem;
}

.columna_detalles, .columna_descripcion {
    flex: 1;
    min-width: 300px;
}

.columna_detalles {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 30%;;
}

.columna_detalles h2 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.detalles_cuadro {
    margin-bottom: 2rem;
}

.detalles_cuadro p {
    margin-bottom: 0.5rem;
    font-size: 15px;
}

.columna_descripcion h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.columna_descripcion img {
    margin-bottom: 2rem;
}

.columna_descripcion p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.actividad_form_box {
    padding: 0 1rem;
    max-width: 860px;
    margin: auto;
}

.actividad_form_box h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
    color:#2A7B9B;
}

.actividad_form_box textarea {
    height:5rem;
    font-size:1em;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding:.5rem;
}

.actividad_formulario {
    padding: 2rem 0;
    margin: 0 auto;
    max-width: 600px;

}

.form-actividad {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.actividad_formulario .title-intro {
    margin-bottom: 2rem;
}

.actividad_formulario .title-intro h3 {
    font-size: 1.1rem;

}

.datos-familiar {
    padding-top: 3rem;
}

.title-intro.datos-familiar p {
    margin-bottom: 0;
}

.inscripcion-form p, .inscripcion-form h2 {
    text-align: center;
}

.inscripcion-form .form-group{
    gap:1rem;
}


/***** confirmación reserva***/

.reserva-confirmacion {
    text-align: center;
    padding: 5rem 1rem;
}

.reserva-confirmacion h2 {
    font-size: 1.5rem;
}

.reserva-confirmacion h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2A7B9B;
    margin-bottom: 2rem;
}

.reserva-detalles,
.reserva-contacto,
.reserva-suplementos {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    max-width: 600px;
    text-align: center;
}

.reserva-detalles li,
.reserva-contacto li,
.reserva-suplementos li {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.reserva-detalles li span,
.reserva-contacto li span,
.reserva-suplementos li span {
    font-weight: 400;
    color: #555;
}

.date-picker {
    margin-top: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.date-picker label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.date-picker input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #13A1A8;
    border-radius: 5px;
    width: 200px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;;
}

.date-picker input:focus {
    outline: none;
    border-color: #2A7B9B;
}


/****** REGISTRO ******/

.registro_title {
    background: url("../../images/front/socio-banner-4r0itrw.jpg") center/cover no-repeat;
}


.registro_form_box {
    padding: 5rem 1rem;
    text-align: center;
    background: #eee;
}

.page h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2A7B9B;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.title-intro p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.form-registro {
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}


.ventajas-socio {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.ventajas-socio li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}


.registro-ventaja {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    display: flex;
    justify-content: space-between;
    padding: 5rem 1rem;
}

.ventaja-texto {
    flex: 1;
}

.ventaja-texto p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.ventaja-imagen {
    flex: 1;
    text-align: center;
}

.ventaja-imagen img {
    max-width: 75%;
    border-radius: 8px;
}


/***** página políticas ****/

.politicas-link {
    text-decoration: underline;

}

.politics, .gracias .container-m {
    padding: 5rem 5%;
}

.politics p, .politics h3, .gracias p, .gracias h3 {
    margin-bottom: 1rem;
}

.politics h3 {
    padding-top: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #2A7B9B;
    letter-spacing: 2px;
}

.politics ul {
    list-style: circle;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}


/***** LOGIN PAGE *****/
.login_section {
    background: url("../../images/front/login-bg-veil-YUzj_KI.jpg") center/cover no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.login_form_box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}


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


.form-login .form-group input:focus {
    outline: none;
    border-color: #2A7B9B;
}

.form-login .form-actions {
    text-align: center; /* Center the buttons */
    margin-top: 1rem;
}


.form-actions .btn:hover {
    background-color: #2A7B9B;
}

.forgot-password {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #555;
    display: block;
}

.terms {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #555;
}

.terms a {
    text-decoration: underline;
    font-weight: 700;
    color: #2A7B9B;
}


/***** FORGET PASSWORD PAGE *****/
.login-page .login_section {
    background: url("../../images/front/login-bg-veil-YUzj_KI.jpg") center/cover no-repeat;
    position: relative;
}

/* Adjust login page: center the form without absolute positioning */
.login-section, .login-page .login_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.login-page .login_form_box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

/* Dar margen en el sign up para que quede un poco de aire, al ser un form tan alto*/
.sign-up-page .login_form_box {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.login_form_box h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.login_form_box .form-actions {
    display: flex;
    justify-content: center;
}

.login_form_box p.forgot-password {
    font-size: 14px;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.login-page .form-group {
    display: flex;
    gap: 0.5rem;
}

.login-page .form-group label {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    text-align: left;
}

.login-page .form-group input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: left;
}

.login-page .login-page .form-group input:focus {
    outline: none;
    border-color: #2A7B9B;
}

.login-page .form-actions {
    text-align: center; /* Center the buttons */
    margin-top: 1rem;
}

.login-page .form-actions .btn {
    background-color: #36B37E;
    color: white;
    font-weight: 700;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-bottom: 1rem;;
}

.login-page .form-actions .btn:hover {
    background-color: #2A7B9B;
}


.login-registrate {
    color: #2A7B9B;
    font-weight: 700;;
}

.login-registrate a {
    text-decoration: underline;
}

/* Skip link styles */
.skip-link {
    font-size: 13px;
    position: absolute;
    left: 0;
    background: #eee;
    color: white;
    padding: 7px;
    text-decoration: none;
    z-index: 100;
    transition: top 0.3s ease;
    color: #333;
}

.skip-link:focus {
    top: 0;
}

/* Ensure focus is visible */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid #44B399; /* Visible focus outline */
    outline-offset: 2px;
}

/* Accessible focus styles for buttons */
button:focus {
    box-shadow: 0 0 5px 2px #44B399;
}

/* Ensure keyboard operability for links styled as buttons */
a[role="button"] {
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

a[role="button"]:focus {
    outline: 3px solid #44B399;
    outline-offset: 2px;
}

/* Ensure focus visibility for form elements */
input:focus, textarea:focus, select:focus {
    border-color: #44B399;
    box-shadow: 0 0 5px 2px #44B399;
}

/* Panel de Usuario */
.panel-usuario {
    padding: 4rem 1rem;
}

.panel-usuario h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.panel-usuario h2 {
    font-size: 1.8rem;
}

.panel-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.mis-datos, .mis-reservas {
    min-width: 300px;
}

.mis-datos {
    width: 40%;
    padding-top: 3rem;
}

.mis-reservas {

    width: 50%;
}

.tarjeta-socio {
    background: linear-gradient(90deg, #2A7B9B, #13A1A8); /* Blue gradient */
    color: white; /* White text */
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
    max-width: 500px;
}

.tarjeta-socio h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tarjeta-socio p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.tarjeta-socio .btn-renovar {
    background: linear-gradient(90deg, #F5C317, #F5A117, #F5CD17);;
    color: #631706;
    font-weight: 700;;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}


.tarjeta-socio-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tarjeta-socio-info {
    flex: 1;
}

.tarjeta-socio-qr {
    flex-shrink: 0;
    margin-left: 1rem;
}

.tarjeta-socio-qr img {
    width: 120px;
    height: 120px;
}


.proximas-reservas, .mis-actividades {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.tarjeta-socio h2, .datos-personales h2, .proximas-reservas h3, .mis-actividades h2, .mis-actividades h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tarjeta-socio p, .datos-personales p, .proximas-reservas ul li, .mis-actividades ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

#reservas-antiguas li:first-of-type, #actividades-antiguas li:first-of-type {
    margin-top: 1rem;
}


.proximas-reservas ul, .reservas-pasadas ul, .mis-actividades ul {
    list-style: none;
    padding: 0;
}

/* Style for reservation list items */
.proximas-reservas ul li, #reservas-antiguas li, .mis-actividades ul li, #actividades-antiguas li {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #ddd;
    background: #D8EFF2;
    border-radius: 10px;
}

#reservas-antiguas li {
    background: #E6E6E6;
}


.proximas-reservas ul li:last-child, .reservas-pasadas ul li:last-child {
    border-bottom: none;
}

.reserva-tipo {
    font-weight: 700;
    font-size: 1rem;
    min-width: 180px;
}

.reserva-fecha {
    font-size: 0.9rem;
    color: #555;
}

.reserva-suplementos {
    font-size: .8em;
    color: #555;
    flex-basis: 100%;
    width: 100%;
    display: block;
    margin-top: .3rem;
}

.reserva-referencia {
    flex-basis: 100%;
    width: 100%;
    display: block;
    margin-top: .3rem;
    font-size: .6em;
    color: #555;
}

.reserva-precio {
    flex-basis: 100%;
    width: 100%;
    display: block;
    margin-top: .3rem;
    font-size: .9em;
    color: #555;
}

.reservas-pasadas {
    color: #8F8F8F;
}

a.btn-option, button.btn-option{
}

/* Estilos comunes */
.btn-option{
    display: inline-flex;         /* alinea icono + texto */
    align-items: center;
    gap: .4rem;
    padding: .33rem .66rem;
    border: 1px solid #5C5C5C;
    border-radius: 5px;
    background: none;
    color: #5C5C5C;
    font: inherit;                /* mismo tipo y tamaño */
    font-weight: 700;
    font-size: .8rem;
    cursor: pointer;
    text-decoration: none;        /* evita subrayado en <a> */
    vertical-align: middle;       /* corrige alineación en línea */
    margin: .5em 0 .5em auto;
}

.btn-option:hover {
    background: #949494;
    color: white;
}

/* Quita diferencias del UA stylesheet */
button.btn-option,
input[type="button"].btn-option,
input[type="submit"].btn-option {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 1px solid #5C5C5C;    /* sobreescribe “outset” */
    padding: .33rem .66rem;       /* sobreescribe padding UA */
    line-height: inherit;
    color: inherit;
}

/* Para <a> con clase botón */
a.btn-option{
    color: inherit;
    text-decoration: none;
}

.proximas-reservas ul li:last-child, .reservas-pasadas ul li:last-child, .mis-actividades ul li:last-child {
    border-bottom: none;
}


.mis-actividades h3 {

    margin-bottom: 1rem;
}

.actividades-inscritas {
    margin-bottom: 2rem;
}

.actividades-pasadas {
    color: #8F8F8F;

}


.btn-ver-antiguas, .btn-nueva-reserva {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: 0.3s ease, color 0.3s ease;
}

.btn-ver-antiguas:hover {
    background-color: #e0e0e0;
    color: #000;
}

#reservas-antiguas {
    color: gray;
    transition: opacity 0.5s ease;
    opacity: 0;
}


#reservas-antiguas.show {
    display: block;
    opacity: 1;
}


#actividades-antiguas {
    display: none;
    color: gray;
    transition: opacity 0.5s ease;
    opacity: 0;
}

#actividades-antiguas.show {
    display: block;
    opacity: 1;
}


.datos-personales {
    margin-bottom: 2rem;
}


/***** elementos ocultos para cambiar de vista en el panel de usuario ***/

.panel-usuario .btn-banner {
    font-size: 1rem;
}

.info-message {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: none;
}


/* Responsive Styles */
@media screen and (max-width: 768px) {

    h2, .reserva-confirmacion h1 {
        font-size: 1.5rem;
    }

    .page-title h1 {
        font-size: 1.5rem;;
    }

    .panel-grid {
        flex-direction: column;
    }

    .mis-datos, .mis-reservas {
        min-width: 100%;
    }

    .tarjeta-socio, .datos-personales, .proximas-reservas, .reservas-pasadas, .mis-actividades {
        padding: 1rem;
    }

    .tarjeta-socio h2, .datos-personales h2, .proximas-reservas h3, .reservas-pasadas h3, .mis-actividades h2 {
        font-size: 1.2rem;
    }

    .tarjeta-socio p, .datos-personales p, .proximas-reservas ul li, .reservas-pasadas ul li, .mis-actividades ul li {
        font-size: 0.9rem;
    }

    .tarjeta-socio .btn-renovar {
        font-size: 0.9rem;
    }

    .proximas-reservas ul li, .reservas-pasadas ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }

    .proximas-reservas ul li, #reservas-antiguas li {
        align-items: flex-start;
    }

}


.footer {
    background-color: #333; /* Color de fondo del footer */
    color: #ffffff; /* Color del texto */
    text-align: center; /* Centra el contenido horizontalmente */
    position: relative; /* Posiciona relativo para futuros estilos si es necesario */
    padding-bottom: 3rem;
}

.footer-content {
    max-width: 800px; /* Ancho máximo para el contenido del footer */
    margin: 0 auto; /* Centra el contenedor en el medio */
    padding: 2rem 1rem 1rem 1rem;
}

.footer a {
    color: #ffffff; /* Color de los enlaces */
    text-decoration: none; /* Quita el subrayado de los enlaces */
    margin: 0 10px; /* Espaciado horizontal entre los enlaces */
    font-size: 14px; /* Tamaño de fuente */
}

.footer a:hover {
    text-decoration: underline; /* Subraya los enlaces al pasar el cursor */
}

/* New footer top styles */
.footer-top {
    display: flex;
    justify-content: flex-start;
}

.footer-map,
.footer-photo {
    flex: 1;
    width: 50%;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
}

.footer-photo {
    text-align: right;
}

.footer-slogan {
    background: url("../../images/front/footer-14rpTqS.jpg");
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-attachment: fixed;
    background-position: top;
    background-size: cover;
    height: 400px;
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
}

.footer .icon-instagram:before, .footer .icon-facebook-square:before {
    font-size: 1.4rem;


}

.footer-location {
    font-size: 14px;
    padding: 1rem;
}

.footer-social a:hover {
    text-decoration: none;
    color: #F5CD17;

}


/*** RESPONSIVE STYLES ***/


/*** START : TABLET ***/
@media screen and (max-width: 768px) {

    .reserva-padel .reserva_title {
        background: url("../../images/front/padel-banner-2_mobile-Pq_f5rs.jpg");
        background-position: center left;
    }

    .header .menu-btn:checked ~ .menu {
        margin-top: 70px;
    }

    .header-wrapper {
        display: block;

    }

    .header-links-desktop {
        display: none;
    }

    .header-links-mobile {
        display: block;
        padding: 1rem;
    }

    .nav-sign-mobile {
        display: block;
    }

    .header li a.nav-login {
        margin-top: 0;
    }


    .menu-icon {
        order: 3;
    }

    .header-links {
        order: 1;
    }

    .container-m {
        max-width: 90%;
    }

    .title-intro h2 {
        font-size: 1.8rem;
    }

    .page-title {
        height: 200px;
    }

    .page-title h1 {
        font-size: 1.5rem;
        padding: 1rem
    }

    .hero {
        background-position: top left;
        min-height: 500px;
        background-attachment: initial;
    }

    .hero::before {
        background-color: rgba(0, 0, 0, 0.5);
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .home-reservas {
        padding: 4rem 2rem;
    }

    .home-reservas-box {
        flex-wrap: wrap;
        justify-content: center;
    }

    .home-reservas-box-item {
        margin-right: 0;
        margin-bottom: 4rem;
        width: 100%;
    }

    .home-eventos-box {
        flex-wrap: wrap;
        justify-content: center;
    }

    .home-eventos-box-item {
        margin-right: 0;
        margin-bottom: 2rem;
        width: 100%;
    }

    .home-eventos-item_info {
        padding: 0;
        padding-top: 1rem;
    }

    .home-eventos-item_info h4, .home-eventos-item_info p {
        margin-left: 1rem;
    }

    .btn-evento {
        width: 100%;

    }

    .banner h2 {
        font-size: 1.5rem;
    }

    .banner .btn-banner {
        font-size: 1rem;
        padding: 10px 1rem;
    }

    .actividad_dos_columnas {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .columna_detalles, .columna_descripcion {
        max-width: 100%;
        width: 100%;
    }

    .columna_descripcion img {
        width: 100%;
    }

    .reserva_form {
        padding: 0;
    }

    .reserva_form_box {
        padding: 2rem 1rem;
    }

    .form-section {
        max-width: 100%;
        margin-bottom: 4rem;
    }

    .form-section:last-of-type {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .reserva_finalizar_datos {

        flex-wrap: wrap;
    }

    .reserva_finalizar_datos p {
        width: 48%;
        margin-right: 0;
    }


    .time-slots {
        flex-direction: column;
        gap: 5px;
    }

    .slot {
        width: 100%;
    }

    .btn-reserva {
        margin-bottom: 1rem;
    }

    .reserva_formulario {
        padding: 1rem;
    }

    .registro-ventaja {
        flex-direction: column;
    }

    .ventaja-imagen img {
        max-width: 100%;
    }


    .login-page .form-group input {
        margin-top: 3px;
    }


}

/*** END : TABLET ***/

/*** START : MOBILE ***/
@media screen and (max-width: 480px) {

    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .footer-photo {
        display: none;
    }

    .footer-slogan {
        font-size: 1.5rem;
    }

    .hero {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }


    .home-reservas-box-item img {
        width: 100%;
        height: auto;
    }

    .home-eventos-box-item img {
        width: 100%;
        height: auto;
    }

    .banner h2 {
        font-size: 1.2rem;
    }

    .banner .btn-banner {
        font-size: 0.9rem;
        padding: 8px 1rem;
    }


    .columna_detalles h2, .columna_descripcion h2 {
        font-size: 1.5rem;
    }

    .columna_descripcion p {
        font-size: 0.9rem;
    }


    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input {
        font-size: 0.9rem;
        padding: 8px;
    }

    .form-actions .btn {
        font-size: 0.9rem;
        padding: 8px 10px;
    }

    .header-wrapper {
        position: relative;
    }

    /* Hide menu by default and position it absolutely */
    .header .menu {
        position: fixed;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 40;
        display: none;
    }

    /* On checkbox activation, show the overlay menu */
    .header .menu-btn:checked ~ .menu {
        display: block;
        margin-top: 70px;
    }

    /* Optional: reordering header-links and menu-icon if needed */
    .header-links {
        order: 1;
    }

    .menu-icon {
        order: 2;
    }


}


.header-actions {
    float: right;
    display: flex;
    align-items: center;
}

.header-actions a {
    padding: 20px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    background-image: linear-gradient(75deg, #2A7B9B, #13A1A8, #2A7B9B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Sign-up confirmation page enhancements */
.reserva-confirmacion p {
    line-height: 2;
    text-align: center;
}

.reserva-confirmacion ul li {
    margin-bottom: 1rem;
    position: relative;

}

/* Custom Confirmation Dialog Styles */
.custom-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.custom-confirm-dialog {
    background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.custom-confirm-dialog button {
    margin: 10px;
    padding: 8px 12px;
    border: none;
    background-color: #2A7B9B;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-confirm-dialog button:hover {
    background-color: #1E5A7A;
}


/* Suplementos pistas */

.text-annotation {
    font-size: .9em;
    text-align: center;
    margin-bottom: 2em;
    color: grey;
}

.reserva_finalizar_suplementos h4 {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}

.reserva_finalizar_suplementos {
    max-width: 600px;
    margin: auto;
}

.reserva_finalizar_suplementos ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

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

.reserva_finalizar_suplementos label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.reserva_finalizar_suplementos label:hover {
    background: #e9ecef;
}

.reserva_finalizar_suplementos label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 15px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: white;
}

.reserva_finalizar_suplementos input[type="checkbox"]:checked + label {
    background: #e8f1f4;
    border-left: 4px solid #2A7B9B;
}

.reserva_finalizar_suplementos input[type="checkbox"]:checked + label::before {
    background-color: #2A7B9B;
    border-color: #2A7B9B;
}

.reserva_finalizar_suplementos input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    left: 1.8rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
}

.reserva_finalizar_suplementos label span.price {
    margin-left: auto;
    font-weight: 600;
    color: #495057;
}

.reserva_finalizar_suplementos label:hover::before {
    border-color: #13A1A8;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}


/* Subscriptions */


/* Subscription Options (Radio Buttons) */

.text-annotation {
    font-size: .9em;
    text-align: center;
    margin-bottom: 2em;
    color: grey;
}

.subscription_options h4 {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}

.subscription_options {
    max-width: 600px;
    margin: auto;
}

.subscription_options ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

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

.subscription_options label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    position: relative;
}

.subscription_options label:hover {
    background: #e9ecef;
}

.subscription_options label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 15px;
    border: 2px solid #dee2e6;
    border-radius: 50%; /* Circular para radio buttons */
    transition: all 0.3s ease;
    background-color: white;
    flex-shrink: 0;
}

.subscription_options input[type="radio"]:checked + label {
    background: #e8f1f4;
    border-left: 4px solid #2A7B9B;
}

.subscription_options input[type="radio"]:checked + label::before {
    background-color: #2A7B9B;
    border-color: #2A7B9B;
}

.subscription_options input[type="radio"]:checked + label::after {
    content: '';
    position: absolute;
    left: 1.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%; /* Punto circular interno */
    background-color: white;
}

.subscription_options label span.price {
    margin-left: auto;
    font-weight: 600;
    color: #495057;
}

.subscription_options label:hover::before {
    border-color: #13A1A8;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}



.strikethrough-price {
    text-decoration: line-through;
    color: #979797;
    margin-right: .5rem;
}

ul.suplementos {
    list-style: none;

}

ul.suplementos li {
    display: flex;
    align-items: center;
    background: #e8f1f4;
    padding: 1rem;
    border-radius: 8px;
    max-width: 480px;
    justify-content: center;
    margin: 0 auto 1rem auto;
}


.precio-total {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}


/* Flash messages */

.flash-messages {
    position: fixed;
    margin: 1rem auto;
    padding: 1rem 1rem;
    z-index: 20;
}

.flash-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    font-weight: 600;
}

.flash-success {
    background-color: #44B399;
    color: white;
}

.flash-error {
    background-color: #dc3545;
    color: white;
}

.flash-warning {
    background-color: #F5C317;
    color: #333;
}

.flash-info {
    background-color: #2A7B9B;
    color: white;
}

@media (max-width: 768px) {
    .flash-messages {
        padding: 0 0.5rem;
    }

    .flash-message {
        font-size: 14px;
    }
}


/* CHECKBOX FORMS */
.checkbox-row-simple {
    margin-bottom: .66rem;
    width: 100%;
}

.checkbox-row-simple .form-check {
    display: flex;
    align-items: center;
    padding: .5rem .5rem .5rem 3rem; /* Espacio para el check a la izquierda */
    border-radius: 8px;
    cursor: pointer;
}

/* Ajuste del check nativo */
.checkbox-row-simple .form-check-input {
    width: 1.3rem;
    height: 1.3rem;
    margin-top: 0;
    margin-left: -2rem; /* Lo posicionamos dentro del padding */
    cursor: pointer;
    border: 2px solid #2A7B9B;
}

.checkbox-row-simple .form-check-input:checked {
    background-color: #2A7B9B;
    border-color: #2A7B9B;
}

.checkbox-row-simple .form-check-label {
    cursor: pointer;
    color: #333;
    font-size: 1rem;
    margin-left: 0.5rem;
}


/* EVENT BOOKING */
ul.event_discount li{
    padding:1.5rem;
    background-color: #f5f5f5;
    border-radius: 1rem;
    margin:1.5rem;
}

.btn-remove{
    margin-top:1rem;
    color: #4e0000;
}

