@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');




/* ROOT VARS */
:root {
--font-default: 'Bebas Neue', sans-serif;
--font-primary: "Lemon/Milk";

--color-default-light: #e3e3e3;
--color-default: #8b8b8b;
--color-default-middle: #a6a6a6;
--color-default-dark: #2e2a2a;

--color-primary-light: #ea566e;
--color-primary: #e6314f;
--color-primary-dark: #aa132c;

--color-secondary-light: #9e83ff;
--color-secondary: #855afd;
--color-secondary-dark: #683eff;


--color-white: #FFFFFF;
--color-light: #f3f5fa;
--color-dark: #000024;

--regular-shaodw: 0 .5rem 1rem rgba(0,0,0,.15)!important;


--regular-shaodw: 0 .5rem 1rem rgba(0,0,0,.15)!important;

scroll-behavior: smooth;
}












/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  
  color: var(--color-default);
  font-weight: 600;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-light);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  
  color: var(--color-default-dark);
  font-family: var(--font-default) !important;
}

p {
  font-size: 14px;
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-primary-dark);
}
#preloader img{
  width: 175px;
}





/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #075e54;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}





/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: var(--color-white);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: var(--regular-shaodw);
  padding-top: 0;
  padding-bottom: 0;
}

#logo {
  max-height: 100px;
}







.btn-main {
  --bs-btn-color: #FFF;
  --bs-btn-bg: var(--color-secondary-light);
  --bs-btn-border-color: var(--color-secondary-light);
  --bs-btn-hover-color: #FFF;
  --bs-btn-hover-bg: var(--color-secondary-dark);
  --bs-btn-hover-border-color: var(--color-secondary-dark);
  --bs-btn-focus-shadow-rgb: 217,164,6;
  --bs-btn-active-color: #FFF;
  --bs-btn-active-bg: var(--color-secondary-dark);
  --bs-btn-active-border-color: var(--color-secondary-dark);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #FFF;
  --bs-btn-disabled-bg: var(--color-secondary-light);
  --bs-btn-disabled-border-color: var(--color-secondary-light);
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1pt;
  
}









/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: var(--font-default);
  font-size: 30px;
  font-weight: 800;
  color: var(--color-default);
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--color-primary);
}


.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0 20px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px 0px 20px;
  font-size: 12px;
  letter-spacing: .5pt;
  text-transform: none;
  color: var(--color-default);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--color-primary);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--color-primary);
  font-size: 35px;
  font-weight: 800;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(230, 49, 79, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 20px;
  color: var(--color-default);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--color-primary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}





/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}
.bg-cover {
  background-position: center;
  background-size: cover;
  width: 100%;
}

.bg-cover-cuadrado {
  background-position: center;
  background-size: cover;
  width: 100%;
  content: "";
  padding-bottom: 100%;
  border-radius: 0 3rem 3rem 3rem;
  height: 100px;
}











/*--------------------------------------------------------------
# SECTION 1
--------------------------------------------------------------*/
.section1 h1, h4, h5{
  font-family: var(--font-default);
}

.section1 h1{
  color: var(--color-primary);
  font-size: 150px;
  line-height: 130px;
  margin-bottom: 0px;
}

.section1 h4{
  font-size: 50px;
  line-height: 41px;
  color: var(--color-default-dark);
  opacity: 1;
  margin-bottom: 0px;

}

.section1 h5{
  font-size: 33px;
  line-height: 30px;
  color: var(--color-default-dark);
}



.formulario-disena::placeholder{
  color: var(--color-default);
}
.formulario-disena{
  border: 2px solid var(--color-default-middle);
}
.section1 select{
  position: relative;
}
.section1 select::after {
  content: "\F282"; /* Código del ícono de flecha hacia abajo de Bootstrap Icons */
  font-family: 'bootstrap-icons';
  position: absolute;
  top: 50%;
  width: 50px;
  right: 15px; /* Ajusta la posición de la flecha según tus necesidades */
  transform: translateY(-50%);
  pointer-events: none; /* Evita que la flecha sea clickeable */
}
.section1 select{
  color: var(--color-default);
}
.formulario-disena option{
  color: var(--color-default);
}
.formulario-disena option:checked {
  color: var(--color-default);
}
.btn-sumbit-form{
  background-color: var(--color-primary);
  color: white;
  font-family: var(--font-default);
  font-size: 35px;
  transition: .3s ease;
}
.btn-sumbit-form:hover{
  background-color: var(--color-primary-light);
  color: white;
}

@media (max-width: 500px) {
  .section1 h1{
    font-size: 80px;
    line-height: 62px;
  }
  
  .section1 h4{
    font-size: 30px;
    line-height: 30px;
  
  }
  
  .section1 h5{
    font-size: 20px;
    line-height: 20px;
  }
  .btn-sumbit-form{
    font-size: 25px;
  }
}


.disena-cards{
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 30%;
}

.disena-cards h3{
  position: absolute;
  left: 25%;
  right: 25%;
  top: 60%;
  color: white;
  text-align: center;
  font-family: var(--font-default);
  font-size: 60px;
}
.disena-cards a{
  position: absolute;
  left: 25%;
  right: 25%;
  top: 75%;
  background-color: var(--color-primary);
  color: white;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  font-family: var(--font-default);
  font-size: 20px;
  transition: .3s ease;
}
.disena-cards a:hover{
  background-color: var(--color-primary-light);
}

@media (max-width: 500px) {
  .disena-cards{
    padding-bottom: 100%;
  }
  .disena-cards h3{
    position: absolute;
    left: 25%;
    right: 25%;
    top: 60%;
    color: white;
    text-align: center;
    font-family: var(--font-default);
    font-size: 37px;
  }
  .disena-cards a{
    font-size: 15px;
  }
}



.card-oaky{
  font-family: var(--font-default);
}
.card-oaky h5{
  font-size: 30px;
  color: #4c4c4c;
}
.card-oaky p{
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: #4c4c4c;
}






.video .portada_video{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 35%;
  position: relative;
}
.video .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ea566e 50%, rgba(230, 49, 79, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.video .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.video .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(230, 49, 79, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.video .play-btn:hover::after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}
.video .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (max-width: 500px) {
  .video .portada_video{
    padding-bottom: 60%;
  }
}







.egresados h2{
  font-family: var(--font-default);
  color: var(--color-primary);
  font-size: 70px;
}
.egresados-card{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100%;
  position: relative;
}
.egresados-card::before {
  content: ''; /* Crea un elemento pseudo ::before para la línea */
  position: absolute;
  bottom: 0; /* Lo coloca en la parte inferior de la tarjeta */
  left: 0;
  width: 0%; /* Inicialmente, la línea no es visible */
  height: 4px; /* Altura de la línea */
  background-color: var(--color-primary); /* Color de la línea */
  transition: width 0.3s ease; /* Transición de la animación */
}
/* Cuando el mouse está sobre la tarjeta, la línea se hace visible */
.egresados-card:hover::before {
  width: 100%; /* La línea se extiende al 100% */
}
.egresados-card p{
  position: absolute;
  left: 25%;
  right: 25%;
  top: 75%;
  background-color: var(--color-primary);
  color: white;
  font-family: var(--font-default);
  text-align: center;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 400;

}
.sucursales h5{
  font-family: var(--font-default);
  color: white;
  font-size: 35px;
}
.sucursales a{
  color: white;
  transition: .3s ease;
  font-size: 35px;
}
.sucursales a:hover{
  color: var(--color-default-light);
}

@media (max-width: 500px) {
  .egresados h2{
    font-size: 50px;
  }
}








.modelos h2{
  color: var(--color-primary);
  font-family: var(--font-default);
  font-size: 70px;
}










.club-cat {
  color: var(--color-primary);
  padding: 7px;
  border: 2px solid var(--color-primary);
  transition: .3s ease;
}
.club-cat:hover {
  padding: 7px;
  background-color: var(--color-primary);
  color: white;
}
.accordion{
  --bs-accordion-active-bg: var(--color-primary) !important;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:focus {
  outline-color: #ea566e !important; /* Cambia el color del contorno al hacer clic */
  box-shadow: none !important; /* Elimina el sombreado */
}
.accordion-button[aria-expanded="true"] h4 {
  color: #ffffff; /* Cambia el color al que desees */
}
.active-cat {
  padding: 7px;
  background-color: var(--color-primary);
  color: white;
}

.club_card li::marker{
  color: var(--color-primary);
}
.club_title h2{
  font-family: var(--font-default);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 50px;
}
.club_card h4{
  font-family: var(--font-default);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 40px;
  color: var(--color-primary);
  border-left: 8px solid var(--color-primary);
  padding-left: 8px;
}
.columna_con_borde{
  border-right: 2px solid white;
  padding-right: 16px;
}
.club_card .descuento{
  color: white;
  font-family: var(--font-default);
  font-size: 85px;
}
.club_card .descuento_det{
  position: relative;
  bottom: 20px;
  font-weight: 500;
  color: white;
  font-family: var(--font-default);
  font-size: 26px;
}
.club_leyenda{
  color: white;
  font-family: var(--font-default);
  font-size: 15px;
  font-weight: 100;
}
.nombre_local{
  color: black;
  font-family: var(--font-default);
  font-size: 35px;
  letter-spacing: 1px;
}
.direccion_local{
  color: black;
  font-family: var(--font-default);
  font-size: 18px;
  font-weight: 100;
}
.telefono_local{
  color: black;
  font-family: var(--font-default);
  font-size: 18px;
  font-weight: 100;
}
.rrss_local{
  color: black;
  font-family: var(--font-default);
  font-size: 18px;
  font-weight: 100;
}
.club_card_foot{
  border-bottom: 2px solid var(--color-primary);
}










.swiperSobreNosotros .slide-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 45%;
}












.title-colores-telas{
  font-family: var(--font-default);
  font-size: 50px !important;
  color: var(--color-primary);
}
/* Estilos para los círculos */
.circulo-color {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transition: background-color 0.3s;
  cursor: pointer;
}
/* Estilos para las ventanas emergentes */
.ventana-emergente {
  position: absolute;
  width: 150px; /* Tamaño de la ventana emergente */
  padding: 10px;
  background-color: white;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  opacity: 0; /* Inicialmente, la ventana emergente está oculta */
  transition: opacity 0.7s, height 0.7s; /* Agregamos una transición para opacity y height */
  left: 50%; /* Centra horizontalmente */
  bottom: 50%;
  transform: translate(-50%, 0); /* Centra verticalmente */
  text-align: center; /* Alinea el contenido al centro */
  z-index: 1;
}
.contenedor-circulo-ventana:hover .ventana-emergente {
  opacity: 1; /* Al pasar el mouse sobre el contenedor, mostramos la ventana */
  height: auto; /* Cambia la altura para mostrar el contenido */
}
.nombre-color{
  color: var(--color-default-dark);
  font-family: var(--font-default);
  font-size: 25px !important;
}


@media (max-width: 500px) {

  /* Estilos para las ventanas emergentes */
  .ventana-emergente {
    position: absolute;
    width: 130px; /* Tamaño de la ventana emergente */
    padding: 10px;
    background-color: white;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    visibility: hidden; /* Inicialmente, la ventana emergente está oculta */
    transition: opacity 0.7s, height 0.7s; /* Agregamos una transición para opacity y height */
    left: 50%; /* Centra horizontalmente */
    bottom: 0;
    transform: translate(-50%, 0); /* Centra verticalmente */
    text-align: center; /* Alinea el contenido al centro */
    z-index: 1;
  }
  .contenedor-circulo-ventana:hover .ventana-emergente {
    visibility: visible; /* Al pasar el mouse sobre el contenedor, mostramos la ventana */
    height: auto; /* Cambia la altura para mostrar el contenido */
  }



  .circulo-color{
    width: 58px;
    height: 58px;
    border-radius: 50%;
  }
  .nombre-color{
    color: var(--color-default-dark);
    font-family: var(--font-default);
    font-size: 15px;
  }
}

.tela{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 80%;
}










/* PAGINA EN CONSTRUCCION */
.pagina_contruccion{
  background-image: url(../img/pagina_en_construccion_oscura.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 74vh;
}












/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 12px;
  background-color: white;
}

#footer .footer-top {
  padding: 60px 0 0px 0;
  background: white;
}


#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
}

#footer .copyright {
  float: left;
  color: var(--color-primary);
  font-family: var(--font-default);
  font-size: 15px;
}

#footer .credits {
  float: right;
  font-size: 13px;
  color: var(--color-primary);
  font-family: var(--font-default);
  font-size: 15px;
}

#footer .credits a {
  transition: 0.3s;
  color: var(--color-primary);
  font-family: var(--font-default);
  font-size: 15px;
}



/*--------------------------------------------------------------
# SOCIAL MEDIA MENU
--------------------------------------------------------------*/
.social-media-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}
.social-media-menu li {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: var(--color-light);
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-media-menu li a {
  color: var(--color-primary);
  /* opacity: .5; */
  transition: .3s ease;
}
.social-media-menu li a:hover {
  color: var(--color-primary-light);
  /* opacity: 1; */
  /* transition: .3s; */
}






