/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

/*@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');*/
/*@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,768,768i');*/
/*@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Francois+One&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..768;1,100..768&display=swap');
@font-face {
    font-family: "Roboto";
    src: url("../fonts/BalooChettan-Regular.ttf");
    src: url("../fonts/BalooChettan-Regular.ttf");
}


/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
 2) font-family: 'Poppins', sans-serif;
 ----------------------------------------*****/


/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(css/font-awesome.min.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(swiper.min.css);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

* {
    box-sizing: border-box !important;
    transition: ease all 0.5s;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #666666;
    font-size: 14px;
    line-height: 1.80857;
    font-weight: normal;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    text-align: justify;
    /*font-family: 'Righteous', Regular;*/

}

/*body {
    color: #666666;
    font-size: 14px;
    line-height: 1.80857;
    font-weight: normal;
    overflow-x: hidden;
    font-family: 'Source Code Pro', monospace;
}*/

a {
    color: #1A1A1A;
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0 0 10px 0;
    font-weight: normal;
    line-height: normal;
    color: #111111;
    margin: 0
}

h1 {
    font-size: 24px;
    /*font-family: 'Righteous', Regular;*/
    /*font-family: 'Francois One', sans-serif;*/
}

h2 {
    font-size: 22px
}

h3 {
    font-size: 18px
}

h4 {
    font-size: 16px
}

h5 {
    font-size: 14px
}

h6 {
    font-size: 13px
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #212121;
    text-decoration: none!important;
    opacity: 1
}

button:focus {
    outline: none;
}

ul,
li,
ol {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

p {
    margin: 20px;
    font-weight: 300;
    font-size: 15px;
    line-height: 24px;
}

a {
    color: #222222;
    text-decoration: none;
    outline: none !important;
}

a,
.btn {
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
}

 :focus {
    outline: 0;
}

.paddind_bottom_0 {
    padding-bottom: 0 !important;
}

.btn-custom {
    margin-top: 20px;
    background-color: transparent !important;
    border: 2px solid #ddd;
    padding: 12px 40px;
    font-size: 16px;
}

.lead {
    font-size: 18px;
    line-height: 30px;
    color: #767676;
    margin: 0;
    padding: 0;
}

.form-control:focus {
    border-color: #F5F4ED  !important;
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
}

.navbar-form input {
    border: none !important;
}

.badge {
    font-weight: 500;
}

blockquote {
    margin: 20px 0 20px;
    padding: 30px;
}

button {
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.full {
    float: left;
    width: 100%;
}

.layout_padding {
    padding-top: 90px;
    padding-bottom: 0px;
}

.padding_0 {
    padding: 0px;
}

/* === Sección principal del banner === */
.banner_section {
  position: relative;
  width: 100%;
  height: 100vh; /* ocupa todo el alto visible */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* === Video de fondo === */
.banner_section .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* recorta para cubrir todo */
  z-index: 0;
}

/* === Oscurecimiento para mejorar contraste del texto === */
.banner_section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* === Contenido centrado === */
.banner_content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner_logo {
  width: 500px;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.banner_title {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #fff;
}

.banner_slogan {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
}

/* === Menú superior centrado === */
.top_nav {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.top_nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 40px;
}

.top_nav li {
  display: inline-block;
}

.top_nav li a {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.top_nav li a:hover {
  color: #d3b29d;
}


.experiencia {
  padding: 100px 0;
  background-color: #fffefc;
  text-align: center;
}

.exp_titulo {
  font-size: 42px;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 16px;
}

.exp_texto {
  font-size: 18px;
  color: #555;
  max-width: 850px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.exp_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  justify-items: center;
  align-items: start;
}

.exp_bloque {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 340px;
}

.exp_img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.4s ease;
}

.exp_img:hover {
  transform: scale(1.03);
}

.exp_boton {
  margin-top: 18px;
  background: none;
  border: none;
  color: #a98068;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.exp_boton:hover {
  color: #8e6b59;
}

.flecha {
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-left: 6px;
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.flecha.rotar {
  transform: rotate(135deg);
}

.exp_contenido {
  display: none;
  max-width: 340px;
  margin-top: 12px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  text-align: justify;
  animation: fadeIn 0.4s ease;
}

.exp_contenido.mostrar {
  display: block;
}

.exp_cta {
  margin-top: 90px;
  background: #f8fdfa;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  padding: 30px 20px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  color: #4c9d95;
  font-weight: 500;
  text-align: center justify;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .exp_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .exp_grid {
    grid-template-columns: 1fr;
  }
}





/* --- SECCIÓN EL MÉTODO --- */
.about_section {
  width: 100%;
  background: #faf8f6;
  padding: 100px 0 0 0;
  font-family: 'Roboto', sans-serif;
}

.about_taital_main {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.about_taital {
  font-size: 60px;
  color: #1A1A1A;
  font-weight: 500;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.about_text {
  font-size: 20px;
  color: #333;
  line-height: 1.75;
  margin-bottom: 60px;
  text-align: justify;
}

/* --- ACORDEÓN --- */
.ig-method-accordion {
  max-width: 900px;
  margin: 0 auto 80px auto;
}

.ig-detail {
  margin-bottom: 15px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(190, 150, 120, 0.15);
  box-shadow: 0 3px 10px rgba(0,0,0,0.03);
  transition: all 0.25s ease;
}

.ig-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.ig-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.05rem;
  color: #2a2a2a;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(250,248,246,1) 100%);
  position: relative;
}

.ig-sub {
  font-weight: 400;
  font-size: 0.95rem;
  color: #8a6b57;
  margin-left: 10px;
}

.ig-summary::after {
  content: "▾";
  font-size: 1rem;
  color: #a7825a;
  transition: transform 0.3s ease;
}

.ig-detail[open] .ig-summary::after {
  transform: rotate(-180deg);
}

.ig-detail[open] .ig-summary {
  background: rgba(248,244,240,0.6);
}

.ig-content {
  padding: 1.2rem 1.6rem 1.4rem 1.6rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  border-top: 1px solid rgba(190,150,120,0.1);
}

/* --- IMAGEN FULL WIDTH --- */
.container-fluid {
  width: 100%;
  padding: 0;
  margin: 0;
}

.container-fluid img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  object-fit: cover;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .about_taital {
    font-size: 42px;
  }
  .about_text {
    font-size: 18px;
  }
  .ig-summary {
    flex-direction: column;
    align-items: flex-start;
  }
  .ig-sub {
    margin-left: 0;
    margin-top: 6px;
  }
}




/* blog section start */

.read_bt_1 {
    width: 170px;
    margin: 0 auto;
    text-align: center;
}

.read_bt_1 a {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #F5F4ED ;
    background-color: #214436  ;
    text-align: center;
    padding: 10px 0px;
    border-radius: 30px;
    margin-top: 10px;
    margin-bottom: 100px;
    font-weight: bold;
    text-transform: uppercase;
}

.read_bt_1 a:hover {
    background-color: #d3b29d ;
    color: #F5F4ED ;
}

.choose_taital {
    width: 100%;
    font-size: 40px;
    color: #1A1A1A;
    font-weight: bold;
    text-align: center;
}

.blog_section {
    width: 100%;
    float: left;
    background-image: url(../images/blog-bg.png);
    height: auto;
    background-repeat: no-repeat;
    background-size: 100%;
    padding-bottom: 50%;
    padding-top: 200px;
}

.blog_taital {
    width: 100%;
    float: left;
    font-size: 40px;
    color: #F5F4ED ;
    font-weight: bold;
    padding-top: 150px;
    text-align: center;
}

.blog_text {
    width: 80%;
    margin: 0 auto;
    font-size: 16px;
    color: #F5F4ED ;
    padding-top: 40px;
    text-align: center;
}

.play_icon_main {
    width: 100%;
    margin-top: 150px;
    float: left;
}

.play_icon {
    width: 200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.play_icon::before {
    content: '';
    position: absolute;
    top: 49%;
    left: 70px;
    width: 130px;
    height: 130px;
    transform: translate(-50%, -50%);
    background-color: #F5F4ED ;
    border-radius: 100%;
    z-index: -1;
    animation: fadeEffect 1.3s infinite ease;
    box-shadow: 0px 0px 10px 0px;
    right: inherit;
}

@keyframes fadeEffect {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.margin_top_90{
    margin-top: 90px;
}
/* blog section end */

/* ===== SECCIÓN Master Class ===== */
.exclusive_section {
  padding: 100px 0;
  background: #fdfdfd;
  width: 100%;
}


/* ===== CONTENEDOR CENTRADO ===== */
.centered_layout {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px; /* importante para equilibrio lateral */
  text-align: center;
  box-sizing: border-box;
}


.exclusive_title {
  width: 100%;
  max-width: 750px;
  margin: 0 auto 16px auto;
  text-align: center;
  color: #272f38;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}


.exclusive_title span {
  display: inline-block;
}


.exclusive_subtitle {
  color: #ce8e00;
  font-size: 18px;
  margin-bottom: 50px;
}

/* ===== FILTROS ===== */
.exclusive_filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.filter_button {
  background: #eaeaea;
  border: none;
  border-radius: 30px;
  padding: 10px 22px;
  color: #272f38;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ACTIVO BASE */
.filter_button.active {
  color: #fff;
}

/* ===== BLOQUE INFO ===== */
.class_info {
  position: relative;
  padding-left: 30px;
  text-align: left;
  margin: 40px auto;
  max-width: 650px;
}

/* ===== LÍNEA VERTICAL ===== */
.line_indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  border-radius: 6px;
}

/* ===== COLORES POR LÍNEA ===== */
.line-mandarina .line_indicator {
  background: #f4a261;
}
.line-mandarina .filter_button.active {
  background: #f4a261;
}

.line-azul .line_indicator {
  background: #1f3a5f;
}
.line-azul .filter_button.active {
  background: #1f3a5f;
}

.line-menta .line_indicator {
  background: #5fb3a2;
}
.line-menta .filter_button.active {
  background: #5fb3a2;
}

/* ===== CONTENIDO ===== */
.class_title {
  font-size: 26px;
  margin-bottom: 12px;
  color: #272f38;
}

.class_desc {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 25px;
}

/* ===== LISTADO ===== */
.class_schedule {
  list-style: none;
  padding: 0;
}

.class_schedule li {
  margin-bottom: 16px;
}

.class_schedule strong {
  display: block;
  font-weight: 600;
  color: #272f38;
}

.mobile_desc {
  display: block;
  font-size: 14px;
  opacity: 0.7;
  margin-top: 4px;
}

/* ===== LEYENDA ===== */
.exclusive_legend {
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.6;
  text-align: center;
}

/* ===== CTA ===== */
.cta_container {
  text-align: center;
  margin-top: 40px;
}

.cta_button {
  display: inline-block;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  background: #ce8e00;
  color: #272f38;
  transition: 0.3s ease;
}

.cta_button:hover {
  background: #e3a834;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .class_info {
    padding-left: 20px;
  }
}

/* contact section start */

/*.contact_section {
    width: 100%;
    float: left;
    padding-bottom: 90px;
}
.contact_taital {
    width: 100%;
    float: left;
    font-size: 40px;
    color: #363636;
    text-align: center;
    font-weight: bold;
}
.email_text {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    padding-top: 120px;
}
.email-bt {
    width: 100%;
    float: left;
    font-size: 18px;
    color: #393838;
    margin-bottom: 20px;
    padding: 10px 15px;
    border: 0px;
    border: 1px solid #d3b29d  !important;
}
.massage-bt {
    width: 100%;
    float: left;
    font-size: 18px;
    color: #393838;
    margin-bottom: 20px;
    padding: 10px 15px;
    border: 0px;
    border: 1px solid #d3b29d  !important;
}
.send_btn {
    width: 170px;
    margin: 0 auto;
    text-align: center;
}
.send_btn a {
    width: 100%;
    float: right;
    text-align: center;
    font-size: 20px;
    color: #F5F4ED ;
    border-radius: 30px;
    background-color: #214436  ;
    padding: 7px;
}
.send_btn a:hover {
    color: #F5F4ED ;
    background-color: #d3b29d ;
}*/
/* contact section end */


/* === CONTACTO === */
.contact_section {
  padding: 100px 0;
  background: #e1e0dd;
}

.contact_grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* mapa | contacto */
  gap: 80px;
  align-items: center;
}

/* MAPA */
.contact_map iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 18px;
}

/* INFO */
.contact_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
}


.contact_info h2 {
  font-size: 48px;
  margin-bottom: 32px;
}

.contact_title {
  font-size: 36px;
  font-weight: 500;
}

/* WhatsApp */
.whatsapp_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 42px;
  border-radius: 50px;
  background-color: #d6b28d;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border: none;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(214,178,141,0.35);
}

.whatsapp_btn:hover {
  background-color: #e6c49e;
  box-shadow: 0 18px 45px rgba(214,178,141,0.55);
  transform: translateY(-3px);
  color: #ffffff;
}


/* Datos */
.contact_details p {
  font-size: 15px;
  opacity: 0.8;
}

/* Redes */
.contact_socials {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.contact_socials a {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid #d6b28d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d6b28d;
  font-size: 28px;
  transition: all 0.35s ease;
}

.contact_socials a:hover {
  background-color: #d6b28d;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(214,178,141,0.35);
}


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

  .contact_grid {
    grid-template-columns: 1fr;
  }

  .contact_map iframe {
    height: 90px;
  }

  .contact_info {
    padding: 40px 20px; /* 🔥 antes era 60px */
  }

  .whatsapp_btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

}


/* footer section start */

.footer_section {
    width: 100%;
    float: left;
    background-image: url(../images/footer-bg.png);
    background-size: cover; /* se ajusta mejor que 100% 100% */
    background-position: center bottom; /* alinea mejor con el borde */
    background-repeat: no-repeat;
    padding-top: 180px; /* antes 250px */
    padding-bottom: 30px;
}

.input_btn_main {
    width: 50%;
    display: flex;
    background-color: #F5F4ED ;
    border-radius: 40px;
    padding: 8px 0px;
    margin: 0 auto;
}

.mail_text {
    width: 100%;
    float: left;
    font-size: 18px;
    color: #2b2c2c;
    background-color: #F5F4ED ;
    height: auto;
    padding: 5px 20px;
    border-radius: 20px;
    border: 0px;
}

.subscribe_bt {
    float: right;
}

.subscribe_bt a {
    width: 170px;
    float: left;
    font-size: 18px;
    color: #d3b29d ;
    background-color: transparent;
    padding: 5px 0px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}

.subscribe_bt a:hover {
    color: #000;
    background-color: transparent;
}

.social_icon {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.social_icon ul {
    margin: 0px;
    padding: 0px;
    display: inline-block;
    text-align: center;
}

.social_icon li {
    float: left;
    padding: 30px 5px;
}

.location_main {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
}

.call_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #F5F4ED ;
    padding-top: 10px
}

.call_text a {
    color: #F5F4ED ;
}

.call_text a:hover {
    color: #e27141;
}


/* footer section end */

.copyright_section {
    width: 100%;
    float: left;
    background-color: #214436  ;
    height: auto;
}

.copyright_section img {
    width: 20%;
}

.copyright_text {
    width: 100%;
    float: left;
    color: #F5F4ED ;
    text-align: center;
    font-size: 16px;
    margin-left: 0px;
}

.copyright_text a {
    color: #F5F4ED ;
}

.copyright_text a:hover {
    color: #e27141;
}