:root {
    --primary-color: #0173BA;
    --secondary-color: #ffffff;
    --tertiary-color: #6EAE15;
    --grey: #D9D9D9;
    --light-grey: #fafafa;
    --second-font: 'Lilita One', cursive;
    --text: rgb(71, 70, 70);
}

html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    font-family: 'Cabin', sans-serif;
}


/* =====================
   NAVBAR BASE (DESKTOP)
===================== */
.nav-bar {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: var(--primary-color);
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* =====================
   CONTENIDO NAV
===================== */
.nav-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-bar-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-bar-logo img {
    width: 60px;
    border-radius: 50%;
}

.nav-bar-logo h1 {
    font-size: 36px;
    color: var(--secondary-color);
}

/* LINKS */
.link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    padding: 6px 12px;
    color: var(--secondary-color);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* BOTÓN */
.btn-agendar-cita {
    padding: 8px 16px;
    font-weight: bold;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

/* =====================
   HAMBURGER
===================== */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger svg g {
    fill: var(--secondary-color);
}

/* =====================
   LAPTOPS PEQUEÑAS
   (AJUSTE FINO)
===================== */
@media (max-width: 1200px) {
    .nav-bar-logo h1 {
        font-size: 30px;
    }

    .nav-link {
        font-size: 15px;
        padding: 5px 10px;
    }

    .link {
        gap: 1rem;
    }
}

/* =====================
   TABLET & MOBILE
===================== */
@media (max-width: 1100px) {
    .nav-bar .container {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-bar-mobile {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: flex;
    }

    .link {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
        background-color: var(--primary-color);
    }

    .link.hamburger-active {
        display: flex;
    }

    .nav-link,
    .btn-agendar-cita {
        width: 100%;
        text-align: center;
    }
}


/*PRESENTATION*/

.presentation {
  position: relative;
  height: 700px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-image 1s ease-in-out;
  overflow: hidden; /* Asegura que .overlay no se salga */
  margin-top: 50px;
}

.presentation .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* <- ajuste de opacidad aquí */
  z-index: 1;
}



.presentation .absolute-image {
    position: absolute;
    object-fit: fill;
    height: 80%;
    width: 100%;
    bottom: 0;
}

.presentation .container {
    width: 60%;
      position: relative;
  z-index: 2; 
}

.presentation h1 {
    position: relative;
    z-index: 10;
    font-size: 80px;
    text-align: center;
    color: var(--secondary-color);
    margin: 0;
}

.presentation h2 {
    position: relative;
    z-index: 10;
    font-size: 70px;
    font-weight: normal;
    text-align: center;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .presentation .container {
        width: 80%;
    }

    .presentation .absolute-image {
        display: none;
    }
}

/*SECOND*/

.second-content {
    padding: 50px 0;
    background-image: url("https://img.freepik.com/free-vector/elegant-white-background-with-shiny-lines_1017-17580.jpg?w=1380&t=st=1699377207~exp=1699377807~hmac=1334a4bd466dfacceae1bb2de9700397ccb3ff3ed4da5e1557f7b2862ad5b0be");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.second-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.second-content .container p {
    font-size: 24px;
    text-align: center;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}



.title h2 {
    font-size: 50px;
    margin: 0;
    font-family: 'Lilita One', cursive;
    color: var(--secondary-color);
    text-align: center;
}



.content img {
    grid-column: 2/3;
    grid-row: 1/4;
    height: 500px;
    width: 600px;
}

.content h2 {
    font-size: 26px;
    margin: 0;
    color: var(--secondary-color);
}

.content p {
    font-size: 20px;
}



@media (max-width: 1100px) {
    .content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .to-rigth {
        align-self: flex-start;
        text-align: start;
    }

    .service {
        align-self: flex-start;
        text-align: start;
    }

    .content img {
        display: none;
    }
}

/*SERVICES*/



.inclusive-content .container {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.inclusive-content p {
    text-align: center;
    font-size: 30px;
    color: white;
}


/*THIRD*/
/* PLANES - SECCIÓN THIRD */

.third-content {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.third-content .title h2 {
  font-size: 60px;
  font-family: var(--second-font);
  color: var(--primary-color);
  margin: 0;
}

/* CONTENEDOR HORIZONTAL PARA PLANES + IMAGEN */
.plans-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  gap: 40px;
}

/* LISTA DE PLANES EN COLUMNA */
.plans-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}

/* CAJA INDIVIDUAL DE PLAN */
.plan-box {
  border: 3px solid var(--primary-color);
  border-radius: 30px;
  padding: 20px;
  background-color: white;
  width: 100%;
}

/* CONTENIDO INTERNO DEL PLAN */
.plans {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plans-header {
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 10px;
  text-align: center;
}

.plans-header h2 {
  font-size: 20px;
  margin: 0;
  font-weight: bold;
}

.plans-header h1 {
  font-size: 26px;
  color: var(--primary-color);
  margin: 10px 0;
}

.plans-header p {
  font-size: 14px;
}

.plans-header p span {
  text-decoration: line-through;
  color: #999;
}

.plans-body{
    display: flex;
    gap: 40px;
    justify-content: center;
}

.plans-details{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.plans-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.icon-text i {
  color: var(--primary-color);
  margin-top: 2px;
}

.plans-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.plans-actions .button {
  padding: 10px 20px;
  border-radius: 10px;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.plans-actions .button:hover {
  background-color: #005a9e;
}

/* IMAGEN A LA DERECHA */
.plans-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plans-image img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .plans-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .plans-image img {
    width: 80%;
    height: auto;
  }

  .plan-box {
    width: 90%;
  }
}



/*CONTACT*/

.contact-content {
  /* background-color: var(--secondary-color); */
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
  background-image: url('assets/ContactoFondo.png'); 
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

.title h2 {
  font-size: 48px;
  color: var(--primary-color);
  font-weight: bold;
  text-align: left;
  margin-bottom: 40px;
}

.cont {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  padding: 0 1rem;
}

form {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}


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

.form-group label {
  font-size: 14px;
  color: black;
  font-weight: bold;
  margin-bottom: 8px;
}
.form-group label:hover {
color: var(--primary-color);
}
.form-group input,
.form-group textarea {
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 10px 0;
  font-size: 16px;
  background-color: transparent;
  font-family: 'Segoe UI', sans-serif;
  outline: none;
  resize: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--primary-color);
}

.button {
  align-self: flex-start;
  font-size: 16px;
  padding: 15px 50px;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/*Floating Button*/

.whatsApp {
    z-index: 2;
    background-color: var(--secondary-color);
    padding: 10px;
    position: fixed;
    bottom: 2%;
    right: 2%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all ease-out 0.2s;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    -o-transition: all ease-out 0.2s;
}

.whatsApp img {
    width: 60px;
    height: 60px;
}

.whatsApp:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

/*BUY HTML*/


@media (max-width: 768px) {
    .image3 {
        display: none;
    }
}



.buy-content .container {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}


.person .plans-actions {
    flex-direction: row;
}

@media (max-width:1400px) {
    .person {
        width: 90%;
        flex-direction: column;
    }

    .buy-content .container {
        width: 90%;
    }
}

@media (max-width:1100px) {
    .buy-content .container {
        width: 90%;
    }

    .person .plans-actions {
        flex-direction: column;
    }
}

.buy-content .container h2 {
    margin: 0;
    text-align: center;
    font-size: 26px;
    color: var(--secondary-color);
    font-family: var(--second-font);
}

.person h3 {
    margin: 0;
    font-size: 20px;
    color: var(--secondary-color);
}

.person h3 span {
    color: black;
}

.person p {
    margin: 0;
    text-align: justify;
    font-size: 18px;
}

.person img {
    width: 150px;
    height: 150px;
    background-color: white;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

@media (max-width:1400px) {
    .person img {
        max-width: 90%;
    }
}



/* AVATARES */
.avatar-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.avatar-container {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.avatar-list {
  flex: 1;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.avatar-item {
  background-color: white;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 20px;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 5px solid var(--primary-color);
  object-fit: cover;
}

.avatar-info h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.avatar-info p {
  margin: 0;
  font-size: 16px;
  text-align: justify;
}

.avatar-highlight {
  background-color: white;
  border-radius: 30px;
  padding: 1.5rem;
  max-width: 360px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  text-align: center;
}

.avatar-highlight h2 {
  margin-top: 0;
  font-size: 28px;
  font-weight: bold;
}
.avatar-highlight img {
  width: 100%;
  border-radius: 20px;
  margin: 1rem 0;
}

.avatar-highlight .plans-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.avatar-highlight .button {
  padding: 12px 20px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button.lime {
  background-color: #d6ec27;
  color: black;
}

.button.gray {
  background-color: #505050;
  color: white;
}

.button:hover {
  transform: scale(1.05);
}

/* CELEBRIDADES */

.celeb-content {
  padding: 80px 0;
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.celeb-content h2 {
 color: var(--secondary-color);
}
/* Swiper contenedor */
.swiper {
  width: 90% !important;
  padding-bottom: 50px;
}

/* Cada slide */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90% !important;
}

/* Tarjeta general */
.celeb-card {
  width: 600px;
  gap: 20px !important;
  padding: 2rem;
  border-radius: 12px;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0.5, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
}

/* Imagen */
.celeb-card img {
  width: 240px;
  height: 340px;
  border-radius: 8px;
  object-fit: cover;
}

/* Información */
.celeb-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.celeb-info h3 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
}

.celeb-info p {
  font-size: 15px;
  line-height: 1.4;
}

/* Botones */
.celeb-card .plans-actions {
  display: flex;
  gap: 0.5rem;
}

.celeb-card .button {
  padding: 10px 20px;
  border-radius: 8px;
  background-color: transparent;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Azul */
.celeb-card.blue {
  background-color: #52A4E3;
  color: white;
}

.celeb-card.blue .button {
  border: 2px solid white;
  color: white;
}

.celeb-card.blue .button:hover {
  background-color: white;
  color: var(--primary-color);
}

/* Blanco */
.celeb-card.white {
  background-color: white;
  color: var(--text);
}

.celeb-card.white .button {
  border: 2px solid var(--text);
  color: var(--text);
}

.celeb-card.white .button:hover {
  background-color: var(--text);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .celeb-card {
    flex-direction: column;
    width: 90% !important;
    padding: 1.5rem;
    text-align: center;
  }

  .celeb-card img {
    width: 100%;
    height: auto;
    max-height: 300px;
  }

  .celeb-info {
    align-items: center;
    gap: 0.8rem;
  }

  .celeb-info h3 {
    font-size: 20px;
  }

  .celeb-info p {
    font-size: 14px;
    line-height: 1.4;
  }

  .celeb-card .plans-actions {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .celeb-card .button {
    width: 100%;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none; /* Oculta flechas en móvil */
  }
}


/*SOFTWARE*/

.software-section {
  padding: 100px 0;
  background-image: url('assets/software.png'); 
  background-size: cover;       
  background-position: center;  
  background-repeat: no-repeat; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.software-title {
  font-size: 60px;
  color: var(--secondary-color);
  font-weight: bold;
  margin-bottom: 50px;
  font-family: var(--second-font);
}

.software-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.software-button {
  background-color: var(--secondary-color);
  color: var(--text);
  padding: 20px 40px;
  font-size: 18px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 15px;
  transition: all 0.3s ease;
}

.software-button:hover {
  transform: scale(1.05);
  background-color: #e8e8e8;
}


/*Footer / Bottom-Bar*/

.bottom-bar {
    background-color: var(--secondary-color);
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
}

.bottom-bar .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: rgb(255, 255, 255, 0.4);*/
}

.bottom-bar img {
    width: 160px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.bottom-bar .link {
    gap: 3rem;
}

.side-a {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 50px 0;
}

.side-a i {
    font-size: 20px;
    color: var(--secondary-color);
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
}

@media (max-width: 1100px) {

    .side-a {
        flex-direction: column;
    }
    .nav-bar-logo{
        /* flex-direction: column; */
        gap: 10 px !important;
        font-size: 15px !important;
    }
    .footer-item {
    display: block; 
    flex-direction: unset;
    align-items: unset;
    justify-content: unset;
    }

}

.social-links,
.social-icons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px !important;
}

.social-icons a{
    margin-left: 10px;
}
.social-links h2 {
    color: var(--text);
}

.social-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: normal;
    transition: all ease-out 0.3s;
    -webkit-transition: all ease-out 0.3s;
    -moz-transition: all ease-out 0.3s;
    -ms-transition: all ease-out 0.3s;
    -o-transition: all ease-out 0.3s;
}

.social-icons i {
    color: var(--text);
}

.social-links a:hover,
.clickable-title:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.whatsApp {
    z-index: 2;
    background-color: white;
    padding: 10px;
    position: fixed;
    bottom: 2%;
    right: 2%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all ease-out 0.2s;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    -o-transition: all ease-out 0.2s;
}

.whatsApp img {
    width: 60px;
    height: 60px;
}

.whatsApp:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

/*TÉRMINOS*/
.top-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:  var(--secondary-color);
}

.title{
    color: white;
}

.content-t{
    width: 70%;
    margin: 0 auto;
    padding-bottom: 50px;
}

.content-t img{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 300px;
    max-height: 100%;
}

.content-t h2{
    font-size: 30px;
}

.content-t p{
    font-size: 20px;
    text-align: justify;
}

.content-t span{
    font-style: italic;
    color:  var(--secondary-color);
}

/* FOOTER */
.gia-footer {
  background-color: var(--grey);
  color: #fff;
  padding: 20px 0;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  z-index: 1;
}

.gia-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gia-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.gia-footer__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gia-footer__label {
  font-size: 16px;
  color: black;
  
}

.gia-footer__icons {
  display: flex;
  gap: 10px;
}

.incons__container {
  background-color: #000;
  width: 30px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.incons__container a {
  color: #ffffff;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.incons__container a:hover {
  color: var(--secondary-color, #00ffc3);
  transform: scale(1.2);
}

.gia-footer__right {
  font-size: 14px;
  color: black;
}

/* Responsive */
@media (max-width: 768px) {
  .gia-footer__content {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .gia-footer__left {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* QUIENES SOMOS */
.who-section {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.who-section .title h2 {
  font-size: 60px;
  color: var(--primary-color);
  font-family: var(--second-font);
  margin-bottom: 20px;
}

.who-section .subtitle {
  font-size: 20px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 0 1rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0 2rem;
}

.service-card {
  background-color: var(--primary-color);
  color: white;
  width: 220px;
  padding: 2rem 1.2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 40px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.service-card p {
  font-size: 15px;
  margin: 0;
}

/* INCLUSIÓN */
.inclusion-section {
  padding: 80px 0;
  background-color: #f7f7f7;
}

.inclusion-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.inclusion-text {
  flex: 1;
  min-width: 300px;
}

.inclusion-text h2 {
  font-size: 60px;
  color: var(--primary-color);
  font-family: var(--second-font);
  margin-bottom: 1rem;
}

.inclusion-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inclusion-text ul li {
  font-size: 20px;
  color: #444;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 30px;
}

.inclusion-text ul li::before {
  content: '';
  width: 14px;
  height: 14px;
  background-color: lightgray;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

.inclusion-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.inclusion-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .inclusion-container {
    flex-direction: column;
    text-align: center;
  }

  .inclusion-text h2 {
    font-size: 48px;
  }

  .inclusion-text ul li {
    font-size: 18px;
  }
}

.precio-anterior {
  text-decoration: line-through;
  color: #888; 
}


/* MODAL PAGO */

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  position: relative;
  max-height: 60vh;
  overflow-y: auto; 
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 40px;
  cursor: pointer;
}

.modal-buttons {
  text-align: right;
  margin-top: 20px;
}

.btn-cancelar, .btn-pagar, .btn-cerrar {
  padding: 10px 20px;
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  background: none;
  color: var(--secondary-color);
  font-weight: bold;
  cursor: pointer;
}

.btn-pagar {
  background-color: var(--secondary-color);
  color: white;
  margin-left: 10px;
}

.btn-pagar:hover, .btn-cerrar:hover {
  background-color: #09595e;
  border-color: #09595e;
  color: white;
}

.qr-img {
  width: 200px;
  height: 200px;
  margin: 20px auto;
  display: block;
  border-radius: 10px;
}




.modal-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.modal-qr-left {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.modal-qr-left h3 {
  font-size: 20px;
  font-weight: bold;
}

.modal-qr-left .qr-img {
  width: 200px;
  height: 300px;
  border-radius: 10px;
  margin: 0 auto;
  display: block;
}

.modal-form {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="tel"],
.modal-form input[type="file"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
}

.btn-enviar {
  margin-top: 10px;
  padding: 10px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.btn-enviar:hover {
  background-color: #09595e;
}
.planes-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  /* background-color: #fff; */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 10px;
}



/* Estilo general para inputs (sin ícono) */
input[type="text"],
input[type="email"] {
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
  background-color: #fff;
  font-family: 'Cabin', sans-serif;
}

/* Estilo específico para el select (con ícono personalizado) */
select {
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
  background-color: #fff;
  font-family: 'Cabin', sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%230173BA"><polygon points="0,0 12,0 6,7"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 40px; /* espacio para que no se superponga con el ícono */
}


.btn-agendar-cita {
    background-color: white;
    color: #0173BA;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-agendar-cita:hover {
    background-color: #0066d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}


/* ================= IDIOMAS ================= */

.dropdown {
  position: relative;
  list-style: none;
}

/* Botón actual (bandera visible) */
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  border-radius: 20px;
  cursor: pointer;
  border: none;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.2);
}

/* Bandera activa */
.lang-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

/* Menú desplegable */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 90px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  padding: 0.3rem 0;
  z-index: 3000;
  list-style: none;
}

.dropdown-menu.show {
  display: block;
}

/* Opciones de idioma */
.lang-option {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem;
  cursor: pointer;
}

.lang-option img {
  width: 26px;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-option:hover img {
  transform: scale(1.1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .dropdown-menu {
    position: static;
    background: rgba(255,255,255,0.12);
    box-shadow: none;
  }

  .lang-option img {
    width: 30px;
  }
}
.how-section {
  padding: 4rem 1.5rem;
  text-align: center;
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: 2rem auto 0;
  aspect-ratio: 16 / 9;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.how-section  {
background-color: #ffffff;
}