:root {
  --color-yomchi: #114a97;
  --color-black-text:#212529;
  --title-font: "Noto Serif", serif;
  --text-font: "Roboto", sans-serif;
  --text-size: 16px; 
  --text-height: 30px;         
  --title-firs: 40px;
  --title-second: 30px;
  --title-third: 20px;
  --title-fourth: 15px;
}
h1{
  font-size: var(--title-firs);
  font-family: var(--title-font);
  font-weight: bold;
  z-index: 3;
}
h2{
  font-size: var(--title-second);
  font-family: var(--title-font);
  font-weight: bold;
  z-index: 3;
}
.card-title, 
h3 {
  font-size: var(--title-third);
  font-family: var(--title-font);
  font-weight: bold;
  z-index: 3;
}
h4{
  font-size: var(--title-fourth);
  font-family: var(--title-font);
  font-weight: bold;
  z-index: 3;
}
p{
  font-family: var(--text-font);
  font-size: var(--text-size);
  line-height: var(--text-height);
}
body {
  font-family: var(--text-font);
  font-size: var(--text-size);
  margin: 0;
  padding-top: 91px;
}
.bg-yomchi{
  background-color:var(--color-yomchi);
  color: #ffffff;
} 
.text-primary{
  color: var(--color-yomchi);
}
span{
  color: var(--color-yomchi);
  font-weight: bold
}
span.bg_black{
  color: #0c5ed8;
}
#header-placeholder {
  margin: 0;
  padding: 0;
}
.btn:hover{
  background-color: #2d4dff;
  color: white;
}
.separator-left {
  height: 3px; 
  background-color: var(--color-yomchi);
  width: 50px; 
  margin: 10px 0 20px; 
}
.separator-center {
  height: 3px; 
  background-color: var(--color-yomchi); 
  width: 50px; 
  margin: 10px auto 20px; 
}
a{
  text-decoration: none;
}
.bg-black-img {
  position: relative;
  background-image: url('img/bg.jpg');
  background-size: cover;
  background-position: center;
}
.bg-black-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: 1; 
}
/* Contenido dentro del fondo */
.bg-black-img > .container,
.bg-black-img > .row {
  position: relative;
  z-index: 2; 
}
/* ***********************INTERIORES BANNER CABECERAS****************/ 
.banner-container-pages {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 25vh;
}
.banner-pages {
  object-fit: cover;
  width: 100%;
}
.banner-container-pages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: 2;
}
.container-text-banner-pages {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 3; 
  padding: 20px;
  text-align: center;
}
/* ***********************MENU**************** */
.navbar {
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease; 
  background-color: #0f0f0f;
  margin: 0;
  padding: 0;
}
.navbar-nav .nav-link {
  color: #ffffff;
  font-weight: bold;
  font-family: "Noto Serif", serif;
  font-size: 17px;
}
.navbar-nav .nav-link:hover {
  color: #114a97;
}
.navbar-nav{
  display: flex;
  gap: 40px;
}
/* Botón de contacto */
.btn-contacto {
  background-color: var(--color-yomchi); 
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 17px;
}
/* Submenú */
.dropdown-menu {
  background-color: var(--color-yomchi);
}
.dropdown-item {
  color: white;
}
.dropdown-item:hover {
  background-color: #114a97b8; 
  color: white; 
}
.navbar-toggler-icon {
    filter: brightness(0) invert(1); 
}
/* hacer scroll */
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #0f0f0f;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  width: 100%; 
  z-index: 1000;
  transition: all 0.3s ease;
}
/* **********************BANNER***************************** */
.banner-image-mobile{
    display: none;
}
.banner-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}
.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container-text-banner-home {
  position: absolute;
  top: 35%;
  left: 0;
  width: 100%;
  transform: translateY(-40%);
  z-index: 99;
  margin-left: 110px;
}
.banner-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px; 
  color: white; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.banner-text {
  font-size:18px;
  margin-bottom: 30px; 
  color: white; 
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); 
}
/* Estilo del fondo de las columnas */
.bg-service {
  background-image: url('img/bg-service.jpg');
  background-size: cover;
  background-position: center;
  min-height: 260px; 
  color: white; 
  position: relative; 
  overflow: hidden; 
}
/* Estilo del título dentro de las columnas */
.service-title {
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  padding-right:120px;
}
/* Estilo del texto dentro de las columnas */
.service-text {
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  padding-right:150px;
}
/* Bordes redondeados y sombra */
.service-box {
  border-radius: 10px; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.social-mobile a{
  margin: 0 20px;
}
/* **********************SECTION-ABOUT-HOME****************** */
.about-image{
  width: 100%;
}
/* ***************************PROGRAMAS-HOME*********************** */
/* Estilo de las tarjetas */
.programs-section .card {
  border: none; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
}
.programs-section .card-img-top {
  height: 180px; 
  object-fit: cover; 
}
.programs-section .card-body {
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  text-align: center;
  padding: 20px; 
  min-height: 230px;
}
.programs-section h4{
  color: var(--color-yomchi);
  margin-bottom: 10px;
}
.programs-section .card-text {
  font-size: var(--text-size)
}
.card-link {
  text-decoration: none; 
  display: block; 
  transition: transform 0.3s ease; 
}
.card-link:hover {
  transform: scale(1.05); 
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}


/* ******************TESTIMONIOS********************** */
/* Testimonios Section */
.testimonios-section .testimonios-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonios-section .testimonios-items {
  position: relative;
  width: 300px;
  height: 300px;
}
.testimonios-section .testimonio-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.testimonios-section .testimonio-item.active {
  opacity: 1;
  visibility: visible;
}
.testimonios-section .title {
  font-weight: bold;
  color: var(--color-black-text);
  text-align: center;
  margin-bottom: 20px;
  user-select: none;
}
.testimonios-section .circle {
  position: relative;
  margin: 0 auto;
  width: 300px;
  height: 325px;
  background-color: #fff;
  border-radius: 150px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  user-select: none;
  overflow: hidden;
}
.testimonios-section .circle-image {
  width: 300px;
  height: 166px;
  background-size: cover;
  background-position: center;
  border-radius: 150px 150px 0 0;
}
.testimonios-section #user {
  width: 55px;
  height: 55px;
  border-radius: 27.5px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.testimonios-section .rating {
  text-align: center;
}
.testimonios-section .rating span {
  font-size: 20px;
  display: inline-block;
  position: relative;
  width: 1.2em;
  color: #ffc107;
}
.testimonios-section .desc {
  width: 225px;
  text-align: center;
  margin: 7px auto 10px;
  color: var(--color-black-text);
  font-size: 13px;
  line-height: 12px;
}
.testimonios-section #heart {
  text-align: center;
  margin-top: 10px;
  cursor: pointer;
}
.testimonios-section .arrow {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.testimonios-section .arrow:hover {
  transform: translateY(-50%) scale(1.2);
}
.testimonios-section #left-control {
  left: 0;
}
.testimonios-section #right-control {
  right: 0;
  transform: translateY(-50%) scaleX(-1); /* Flip horizontally for right arrow */
}
.testimonios-section #right-control:hover {
  transform: translateY(-50%) scaleX(-1) scale(1.2);
}

/* ***************************INSTRUCTORES-HOME*********************** */
/* Estilo de las tarjetas */
.instructores-section .card {
  border: none; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
}
.instructores-section .card-img-top {
  height: 270px; 
  object-fit: cover; 
}
.instructores-section .card-body {
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  text-align: center;
  padding: 20px; 
  min-height: 150px;
}
.instructores-section h4{
  color: var(--color-yomchi);
  margin-bottom: 10px;
}
/* Estilo de los íconos de redes sociales */
.social-icons a {
  text-decoration: none; 
  transition: transform 0.3s ease; 
}
.social-icons a:hover img {
  transform: scale(1.2); 
}
.social-icons img {
  filter: invert(1); 
}

/* ****************FEDARECAIONES-HOME********************* */
/* Estilo general de la sección */
.federaciones-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
/* Estilo de las imágenes en el primer row */
.federacion-img {
  max-width: 150px; 
  height: auto; 
  transition: transform 0.3s ease; 
}
.federacion-img:hover {
  transform: scale(1.1); 
}
.tkd-img {
  max-width: 370px;
  height: auto; 
  transition: transform 0.3s ease; 
}
.tkd-img:hover {
  transform: scale(1.1); 
}
/* ****************************CONTACT-HOME********************* */
/* Estilo general de la sección */
.contact-image-home {
    background-image: url('img/rotura-madera.jpg');
    height: 100%; 
    background-size: cover; 
    min-height: 554px;
    background-position: top center;
}

/* ********************************FOOTER****************** */
.footer-section {
  background-color: #212529; 
  color: white;
}
.footer-logo {
  max-width: 90px;
  height: auto;
}
.footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: "Noto Serif", serif;
}
.footer-section i {
  color: #0d6efd; 
}
.footer-section a {
  transition: color 0.3s ease; 
}
.footer-section a:hover {
  color: #0b5ed7; 
}
.footer-section .small {
  font-size: 0.8rem;
}
/* **********************************NOSOTROS PÁGINA******************************************************** */
/* Estilo de las tarjetas */
.mision-section .card {
  border: none; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
  border-radius: 20px;
}
.mision-section .card-body {
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  text-align: center;
  padding: 20px; 
  min-height: 230px;
}
.mision-section .card-text {
  font-size: 15px;
}
.negros-section .card-title{
  font-size: var(--text-size)
}
.sabonin-image-container {
  width: 100%;
  height: 100%; 
  margin: 0;
  padding: 0;
  overflow: hidden; 
}
.sabonin-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block; 
}
.sabonins-content-text{
  padding: 10px 50px;
}
.container-sabonin{
  height: 400px;
}
.cita{
  margin-top: -21px;
  width: 4%;
}
/* cinturones negros */
.negros-section .card {
  border: none; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
}
.negros-section .card-img-top {
  border-top-left-radius: 5px; 
  border-top-right-radius: 5px;
}
.negros-section .card-body {
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  text-align: center;
  padding: 10px; 
  background: black;
  color: white;
  border-radius: 0 0px 5px 5px;
}
/* *************************************SERVICIOS***************************************************** */
.icon-service-page{
  height: 40px;
}
.icon-service-turnos{
  color: white;
  background-color: #122bb9;
  padding: 3px 10px;
  font-size: 30px;
  border-radius: 5px;
  margin-top: -40px;
}
.card.card-service{
  background: transparent;
}
.list-group-item.list-group-item-action.list-service-page{
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
}
/* ******horarios***** */
.schedule-section {
  padding: 48px 0;
}
/* Table Styling */
.schedule-section .table {
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
/* Table Header */
.schedule-section .table thead th {
  background-color: #333;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  padding: 16px;
  border-bottom: 2px solid #dee2e6;
}
/* First Column (Group Names) */
.schedule-section .table th[scope="row"] {
  background-color: #333;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 16px 24px;
  border-right: 2px solid #dee2e6;
}
/* Table Cells */
.schedule-section .table td {
  padding: 16px;
  font-size: 15px;
  color: #555;
  transition: background-color 0.3s ease;
}
/* Highlight Cells with Content */
.schedule-section .table td:not(:empty) {
  background-color: #f1f8ff;
  color: #2c3e50;
  font-weight: 500;
}
.schedule-section .table td:hover:not(:empty) {
  background-color: #e3f0ff;
  cursor: pointer;
}
.schedule-section .table td:empty {
  background-color: #f8f9fa;
}
.schedule-section .table tbody tr:nth-child(odd) {
  background-color: #fff;
}
.schedule-section .table tbody tr:nth-child(even) {
  background-color: #fafafa;
}
.schedule-section .table th,
.schedule-section .table td {
  border: 1px solid #dee2e6;
}
/* ***********************************************TAEKWONDO***************** */
.philosophy-section .philosophy-quote {
  background-color: #fff;
  border-left: 4px solid var(--color-yomchi);
  border-radius: 8px;
}
.philosophy-image-container img{
    width: 70%;
    margin: auto;
    justify-content: center;
    display: flex;
}
/* filosofía del taekwondo*/
.taekwondo-section .card {
  border: 1px dashed white;
  border-radius: 10px;
  overflow: hidden;
  height: 130px;
  padding: 15px;
  background-color: transparent;
}
.taekwondo-section .card {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.taekwondo-section .card:hover {
  transform: translateY(-10px) scale(1.05);
}
.taekwondo-section .card-img-top {
  height: 45px;
  width: 100%;
  object-fit: contain;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.taekwondo-section .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  min-height: 55px;
}
.taekwondo-section .card-title {
  font-size: var(--text-size);
}
/* Spirit Section */
.spirit-section .content-title {
  font-family: var(--title-font);
  font-size: var(--title-second);
  font-weight: bold;
  color: var(--color-yomchi);
  margin-bottom: 15px;
}
.spirit-section .highlight-principles {
  color: var(--color-yomchi);
  font-weight: bold;
}
.spirit-section .conclusion-text {
  font-family: var(--title-font);
  font-size: 18px;
  color: #333;
  font-style: italic;
}
.spirit-section .spirit-image-container {
  overflow: hidden;
}
.spirit-section .spiritual-basis {
  background-color: #fff;
  border-left: 4px solid var(--color-yomchi);
  border-radius: 8px;
}
/* ********************************************FAQ******************************************* */
/* Personalización Acordeón Yom Chi */
.accordion-button:not(.collapsed) {
    background-color: #e2e2e2;
    color: #114a97;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.accordion-button:focus {
    border-color: #114a97;
    box-shadow: 0 0 0 0.25rem rgba(17, 74, 151, 0.25);
}
.accordion-button::after {
    filter: brightness(0.5);
}
.accordion-item {
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.accordion-header button {
    font-weight: 600;
    font-size: 1.1rem;
}
/* *************************************************contacto****************** */
.contact-form .form-control::placeholder {
  color: #606060;
}
.contact-form .form-control:focus {
  border-color: var(--color-yomchi);
  box-shadow: none;
  color: white;
}
.contact-form .btn-primary {
  background-color: var(--color-yomchi);
  border: none;
  font-size: 1rem;
  padding: 10px;
}
.contact-form .btn-primary:hover {
  background-color: #0d3c7a;
}
.social-contact .social-icons a:hover img {
  transform: scale(1.2);
}
.social-contact .social-icons img {
  filter: invert(1);
}
.schedule-contact ul li,
.address-contact p {
  font-size: 16px;
  line-height: 1.6;
}
/* **********************************COOKIE MODAL*********************** */
.cookie-banner {
    width: 100%;
    position: fixed;
    background-color: rgb(0 0 0 / 98%);
    z-index: 1050;
    color: rgb(255 255 255 / .9);
    padding: 1.1em;
    text-align: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s 
ease-in-out;
    overflow: hidden;
}
.cookie-banner .banner-text {
    font-size: 0.9rem; /* Un poco más pequeño para ser discreto */
    line-height: 1.4;
}
/* Color del enlace a la política de cookies */
.cookie-banner .text-yomchi {
    color: var(--color-yomchi) !important;
}
/* Botón de Rechazar todo */
.cookie-banner .btn-outline-light {
    color: white;
    border-color: white;
}
.cookie-banner .btn-outline-light:hover {
    background-color: white;
    color: var(--color-black-text) !important;
}
/* Botón de Configurar */
.cookie-banner .btn-outline-yomchi {
    color: var(--color-yomchi);
    border-color: var(--color-yomchi);
}
.cookie-banner .btn-outline-yomchi:hover {
    background-color: var(--color-yomchi);
    color: white !important;
}

/* Botón de Aceptar todo (principal) */
.cookie-banner .btn.bg-yomchi {
    background-color: var(--color-yomchi) !important;
    border-color: var(--color-yomchi) !important;
    color: white !important;
    transition: background-color 0.3s;
}
.cookie-banner .btn.bg-yomchi:hover {
    background-color: #0d3873 !important; /* Tono más oscuro al pasar el ratón */
    border-color: #0d3873 !important;
}
/* Ajuste de márgenes en móviles para que los botones no se peguen */
@media (max-width: 991.98px) {
    .cookie-banner .row > div {
        text-align: center !important;
    }
    .cookie-banner .btn {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
/* Fondo del modal content, usando la variable oscura del sitio */
.modal-content.bg-dark-custom {
    background-color: var(--color-black-text) !important;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
}
/* Título del modal */
.modal-header .modal-title {
    color: white;
    font-family: var(--title-font);
}
/* Botón de cerrar la 'x' */
.modal-header .btn-close {
    filter: invert(1); /* Pone la 'x' de cierre en blanco */
    opacity: 0.8;
}
/* Personalización de los checkboxes de Bootstrap */
.modal-body .form-check-input:checked {
    background-color: var(--color-yomchi);
    border-color: var(--color-yomchi);
    box-shadow: 0 0 0 0.25rem rgba(17, 74, 151, 0.4); 
}
.modal-body .form-check-label {
    font-size: 0.95rem;
    cursor: pointer;
}
/* *******************************************BOTON WHATSAPP******************************************************* */
#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
#whatsapp-button img {
  width: 50px;
  height: 50px;
}

/* ***************************INSCRIPCIONES******************* */

.text-primary-yomchi { 
  color: var(--color-yomchi); 
}
.bg-primary-yomchi { 
  background-color: var(--color-yomchi);
 }

/* Estilo de los inputs */
.custom-input {
    border: 1px solid #bbbbbb;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.custom-input:focus {
    border-color: var(--color-yomchi);
    box-shadow: 0 0 0 0.25rem rgba(17, 74, 151, 0.15);
    background-color: #fff;
}

/* --- TARJETAS DE CUOTA (FUNCIONAN EN PC Y MÓVIL) --- */
/* 1. Escondemos el radio button */
.plan-option-yomchi input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
/* 2. La tarjeta base */
.plan-card-yomchi {
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: #fafafa;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%; 
}
/* 3. El botón dentro de la tarjeta */
.btn-select-yomchi {
    margin-top: 15px;
    padding: 10px 25px;
    background-color: #ffffff;
    border: 2px solid var(--color-yomchi);
    color: var(--color-yomchi);
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.plan-card-yomchi:hover {
    border-color: var(--color-yomchi);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
/* --- ESTADO SELECCIONADO --- */
.plan-option-yomchi input[type="radio"]:checked + .plan-card-yomchi {
    border-color: #ddffd8;
    background-color: #ddffd8;
    box-shadow: 0 10px 20px rgba(17, 151, 53, 0.15);
}
.plan-option-yomchi input[type="radio"]:checked + .plan-card-yomchi .btn-select-yomchi {
    background-color: var(--color-yomchi);
    color: #ffffff;
}
.plan-option-yomchi input[type="radio"]:checked + .plan-card-yomchi .btn-select-yomchi::after {
    content: " ✓";
}
.plan-card-yomchi .days,
.plan-card-yomchi .text-muted-card { 
  color: #212529;
}
.plan-card-yomchi .price { 
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-yomchi);
 }
.btn-form-yomchi {
    background-color: var(--color-yomchi) !important;
    border: 2px solid var(--color-yomchi); 
    color: white;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-weight: 500;
}
/* ******************************************************************MOBILE************************************************************** */
@media only screen and (max-width: 767px) {
  h2{
    font-size: 30px;
  }
  h3{
    font-size: 20px;
  }
  p{
    font-size: 16px;
    line-height: 1.5rem;
  }
  .btn-contacto {
    margin-top: 20px;
  }
  .navbar-collapse {
    text-align: center;
    padding-bottom: 20px;
  }
   .container-text-banner{
     margin-left: 0;
  }
   .card-img-top, 
   .banner-pages{
    height: 100% !important;
  }
  .navbar-nav{
    gap: 0;
  }
  .navbar-expand-lg{
    padding: 0;
  } 
  .btn-contacto{
    margin-left: 0 !important;
  }
/* ******INSCRIPCIONES ******* */
    .plan-option-yomchi {
        margin-bottom: 15px; 
    }
    .plan-card-yomchi {
        padding: 20px;
    }
 /* ****************************HOME-MOBILE********************* */
   .banner-image-mobile{
    display: block;
    height: 100%;
  }
  .banner-image{
    display: none;
  }
  .banner-button{
    font-size: 16px !important;
  }
 .banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); 
    z-index: 2;
  }
  .container-text-banner-home{
    margin-left: 0;
    top: 22%;
  }
  .banner-title {
    font-size: 36px;
    margin-top: 100px;
  }
  .banner-text{
    text-shadow: 4px 4px 11px rgba(0,0,0,1),  4px 4px 11px rgba(0,0,0,1),
      4px 4px 11px rgba(0,0,0,1),  4px 4px 11px rgba(0,0,0,1);
    font-size: 17px !important;
  }
 .bg-service{
    min-height: 207px;
    margin-bottom: 10px;
  }
  .mobile-padding{
    padding-bottom: 20px;
  }
  .mobile-no-margin-bottom{
    margin-bottom: -48px;
  }
  /* ******NOSOTROS MOBILE******* */
  .sabonins-content-text{
    padding: 30px 20px;
  }
  /* dos columnas en mobile */
  .col-mob-2{
    width: 50%;
    float: left;
  }
  .federacion-img {
    max-width: 115px !important;
  }
  .text-left-mobile{
    text-align:left !important;
    }
  .mb-separator-left{
    margin: 20px 0;
    }
  .programs-section .card-body{
    min-height: 140px;
  }
  .contact-image-home{
    height: 100%;
    background-size: cover;
    min-height: 35px;
    background-position: top center;
    background-repeat: no-repeat;
  }
/* ******testimonios-mobile****** */
  .testimonios-section{
    padding-bottom: 355px !important;
  }
  .testimonios-section .testimonios-items {
    width: 250px;
    height: auto; 
  }
  .testimonios-section .circle {
    width: 250px;
    height: auto; 
    min-height: 250px; 
    border-radius: 125px;
    padding-bottom: 15px; 
  }
  .testimonios-section .circle-image {
    width: 100%;
    height: 130px;
    border-radius: 125px 125px 0 0;
  }
  .testimonios-section .desc {
    width: 90%; 
    margin: 10px auto; 
    font-size: 12px !important;
    line-height: 1.4 !important; 
  }
  .testimonios-section .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .testimonios-section .rating {
    margin-top: 0; 
  }
  .testimonios-section .rating span {
    font-size: 18px;
  }
  .testimonios-section .arrow {
    width: 25px;
    height: 25px;
  } 
  /* **********NOSOTROS MOBILE********** */
  .mobile-col2{
    width: 50%;
  }
  /* ***********SERVICIOS MOBILE********** */
  .schedule-section .table thead th,
  .schedule-section .table th[scope="row"],
  .schedule-section .table td {
    font-size: 14px;
    padding: 12px;
  }
.schedule-mobile .card-header {
    font-size: var(--text-size);
    font-weight:  bold;
}
.schedule-mobile .list-group-item {
    font-size: 14px; 
}
.schedule-mobile .badge{
  font-size: var(--text-size);
}
/* ******FILOSOFRIA MOBILE******** */
.philosophy-image-container img{
  width: 90% !important; 
}
.philosophy-section .philosophy-text, .spirit-section .philosophy-content p  {
  font-size: 14px;
} 
.spirit-section .spirit-title {
  font-size: 28px;
}
.spirit-section .spirit-image-container {
  height: 326px;
}
.taekwondo-section .card-img-top {
  height: 45px !important;
}
.taekwondo-section .card-title {
  font-size: 18px;
}
.spirit-image-container img{
  width: 80%;
  margin: auto;
  display: flex;
}
/* *****FOOTER-MOBILE***** */
.footer-section .footer-text, .footer-section li, .footer-section a, .footer-section p {
  font-size: 12px !important;
  line-height: 1rem !important;
}
.footer-section small{
  margin-bottom: 20px;
 }   
}

/* ************************************************************* PORTATIL*************************************************************** */
@media only screen and (min-width: 1366px) and (max-width: 1920px) {
  /* Estilos específicos para portátiles de 16" y menores */
  .logo-yonchi {
    margin-right: 70px !important;
  }
  .btn-contacto {
    margin-left: 0px !important;
  }
  .navbar-collapse {
    text-align: center;
  }
  .container-text-banner {
    margin-left: 0;
  }
  .container-text-banner-home {
    margin-left: 50px; 
  }
  .banner-container {
    height: 85vh;
  }
.container-text-banner-home {
   top:40%;
 }
}
@media only screen and (min-width: 992px) and (max-width: 1250px) {
  /* Reducimos el GAP para que los elementos del menú estén más juntos */
  .navbar-nav {
    gap: 10px;
  }
  .btn-contacto {
    margin-left: 15px !important;
  }
}