
/********* RESET ALL **********************************************************************/

* {
	margin: 0;
	padding: 0;
}

/*This has become a very popular technique lately, and for good reason. 
It removes all default margin and padding for every object on the page,
no holds barred, regardless of browser. This provides a nice clean slate for design
and ensures that all spacing is intentional, explict, and ubiquitous across browsers. 
There is no reason not to do this. */
/************************************************************************************************/


.principal-movil {
      display: none;
  }

.principal {
    padding-bottom: 0.8%;
    background-color: #FFF8F0;
}

/* Logo y Texto */
.logo-container {
    padding: 0;
    margin-top: 1.6%;
    margin-bottom: 0.55%;
       
}

.logo {
    display: flex;
    align-items: center;   
}

.logo-img {
    width: 13%;
    height: auto;
    margin-right: 10px;  /* Espacio entre el logo y el texto */
}

.text-link{
  text-decoration: none; 
  color: #000; 
}

.logo-text {
    font-size: 0.85em;
    margin-top: 2%;

    /*CSS DE LA LETRA OSWALD DE GOOGLE FONT */ 
    font-family: "Prociono", serif;
    font-weight: 700;
    font-style: normal;
}

/* Sección de Teléfono */
.phone-section {
    margin-left: 20%;
    margin-top: 1%;
    
}

.phone-link {
    margin-left: 8%; 
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.phone-icon {
    color: #a1c24f;
    font-size: 1.47em;
    margin-right: 2%;
}






/************* B A R R A   D E   N a v e g a c i ó n  *************************/

.navegacion-container{
  /*border: 1px solid blue; */
  padding-top: 0.6%;  
}

.menu-list {
    justify-content: right;
    font-size: 1.15em;
    width: 100%;    
    font-weight: 600;
}



.menu-list .nav-item:first-child .nav-link {
  color: #a1c24f !important;
}

/* Cambio de color al pasar el mouse */
.menu-list .nav-item .nav-link {
  color: inherit; /* Color original del texto */
  transition: color 0.3s ease-in-out;
}

.menu-list .nav-item .nav-link:hover {
  color: #a1c24f;
}



.menu-list .nav-item {
    margin-right: 15px; /* Espaciado horizontal entre los li */
}

.menu-list .nav-item:last-child {
    margin-right: 0; /* Elimina el margen en el último li */
}

/* Icono de Usuario */
.user-container{    
  /*border: 1px solid red; */
  margin: 0px;
}
.user-container a{
  margin-top: 12%; 
   margin-left: 86%;  
}

.icono-user {
    font-size: 2.6em;
    color: #a1c24f;    
}






/*****  S E C C I O N   PRINCIPAL    ****************************/

.terapia {
    /*border: 1px solid red; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 5%;
}

/* Sección izquierda */
.left-section {
    /*border: 1px solid orange; */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 3%;
}

/* Contenedor del título */
.title-container {
    /*border: 1px solid black; */
}

.title-container h4 {
    font-size: 1.75rem; /* 28px */
    font-weight: 600;
    color: black;
    display: inline-flex;
}






.service-badge {
    display: flex; /* Asegura que los elementos se alineen correctamente */
    align-items: center;
    justify-content: flex-start;
    width: auto; /* Se ajusta automáticamente al contenido */
    min-width: fit-content; /* Se expande según el texto e ícono */
    padding: 4px 10px; /* Espaciado interno */
    background-color: rgba(1, 151, 25, 0.2);
    border-radius: 14px;
}

.service-badge i {
    margin-right: 8px; /* Espacio entre el icono y el texto */
}

.service-badge span {
    white-space: nowrap; /* Evita que "Servicio" se divida en varias líneas */
    color: #019719;
}


/* Sección derecha */
.right-section {
    /* border: 1px solid green; */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    margin-right: 3%;
}

/* Contenedor del precio */
.price-container {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end; /* Alinea los elementos a la derecha */
    width: 100%;
}

/* Precio */
.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
    margin-top: 4%;
    margin-right: 2%;
    /*border: 1px solid red; */
}

/* Botón */
.price-container .btn {
    background-color: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
}

.price-container .btn:hover {
    background-color: #0056b3;
}



.d-flex {
    gap: 1rem; /* Espacio entre los elementos */
    margin-left: 4%;
}

/* Estilos para cada div */
.info-box {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Espacio entre el icono y el texto */
    font-size: 1rem;
    color: #333;
}
.info-box i{
  color: #164dcb;
}







/* Contenedor de pestañas alineado a la izquierda */
.beneficios{
  margin-top: 3%;
  padding-left: 5%;
}
.tab-container {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

/* Estilos de los botones de pestaña */
.tab-btn {
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: #e9ecef;
}

.tab-btn.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

/* Contenido de pestañas */
.tab-content {
    /*border: 1px solid #ccc; */
    padding: 15px 15px 15px 0px;
    border-radius: 5px;
}

/* Ocultar pestañas por defecto */
.tab-pane {
    display: none;
}

/* Mostrar la pestaña activa */
.tab-pane.active {
    display: block;
}







  /**************  S E C C I O N   F O O T E R    ****************************/

  .footer-section {
      padding: 5% 0 2% 0;
      background-color: #fff8f0;
  }

  .footer-logo {
      width: 10%; 
      height: 10%; 
      margin-right: 10px;
  }

  .footer-text {
      font-size: 0.85em;
      font-weight: 700;
      margin: 1.5% 0 0 0;
  }

  .footer-description {
      font-size: 1em; 
      color: #787b82;
      margin-top: 6%; 
      text-align: justify;
  }

  .contact-container {
      margin-left: 2%; 
      padding-left: 2%;
  }

  .contact-title {
      font-size: 1.4em; 
      font-weight: 600; 
      color: #050f26;
  }

  .contact-item {
      margin: 8% 0 0 0;
      display: flex; 
      align-items: center; 
      text-align: left;
  }
  .contact-link {
      text-decoration: none; 
      font-size: 1.3em; 
      display: flex; 
      align-items: center;
  }

  .contact-icon {
      color: #a1c24f; 
      font-size: 0.8em;
      font-weight: 600;
      margin-top: 1%;
  }

  .contact-number{
      margin-left: 6%;
      /*color: #050f26; */
      color: black;
      font-weight: bold;
  }
  .contact-email {
    margin-left: 6%;
      color: #787b82; 
      font-size: 0.75em;
  }

  .contact-address{
    margin-left: 6%;
    color: #787b82;
    font-size: 0.75em;
  }

  .info-container {
      margin-left: 1%;
  }

  .info-content {
      max-height: 100%; 
      text-align: center; 
      margin-top: 30%;
  }

  .info-title {
      font-size: 1.4em; 
      font-weight: 600; 
      color: #050f26;
  }

  .info-link {
      text-decoration: none; 
      margin-top: 8px;
  }

  .info-terms {
      color: #787b82; 
      font-size: 0.75em;
  }

  .social-container {
    justify-content: end;
      gap: 25px;
  }

  .social-link {
      text-decoration: none; 
      font-size: 1.5em; 
      display: flex; 
      align-items: center;
  }

  .social-icon {
      color: #000; 
      font-size: 0.8em;
  }













/************************* MEDIA QUERYS  *******************************/

@media (max-width: 768px) { 

   .principal {
        display: none;
    }

    .principal-movil {
        display: flex;  
        padding-top: 3.2%;
        justify-content: left;     
        background-color: #FFF8F0;     
        /*border: 2px solid red;*/
    }    
    .logo-movil {
      align-items: left;
      width: 70%;        
      /*border: 1px solid red;*/
    } 
    .logo-img-movil {
        width: 15%; /* auto; */
        height: auto; /* 40px; */
        margin-right: 2%;
        align-items: left;
    }
    .logo-text-movil {
        font-size: 1.1em;
        margin-top: 0;
        font-weight: bold;
        align-items: left;
    }
   
    .user-movil {
      width: 12%;      
      align-items: center;
      margin-left: auto; /* Empuja el contenedor hacia la derecha */  
      margin-right: 3%;       
      /*border: 1px solid green; */  
    }
    .user-movil a{
        margin-top: 13%; /* 25%; */ 
        margin-left: 55%;  /* 55%; */ 
    }

    .icono-user-movil {
        font-size: 2em;
        color: #a1c24f;
    }

    .menu-toggle {      
        display: flex;
        align-items: left;
        padding-right: 3%;        
        width: auto;
        /*border: 2px solid blue; */ 
    }

    .menu-icon {
        font-size: 1.8em;
        color: green;
    }    
    
    .navegacion-container-movil {        
        width: 100%;
        /*border: 2px solid black;*/
    }

    .navbar-collapse {
        display: none;  /* Se oculta por defecto */
    }

    .navbar-collapse.show {
        display: block !important;  /* Se muestra al hacer clic */
        background-color: #a1c24f;  /* Fondo para que se vea el menú */
        padding: 10px;        
    }

    .nav-link{
      color: white;
    }    
    




  /**********  S E C C I O N     P R I N C I P A L     ****************************/  

.title-container h4 {
    font-size: 1.4rem;     
}

.price{
  margin-right: 8%;
}
.price-container{
  display: inline-block;
}

.textos{
  margin-top: 9%;
}




  /**************  S E C C I O N   F O O T E R    ****************************/

 .footer-section {
      padding: 5% 0 2% 0;
      background-color: #fff8f0;    
  }

  .logo-container{
    flex-direction: column; /* Asegura que los elementos estén en columna */
      align-items: center; /* Centra horizontalmente */
      justify-content: center; /* Centra verticalmente */
      text-align: center;
      
  }

  .footer-logo {
      width: 10%; 
      height: 10%; 
      margin-right: 0; /* 10px; */
  }

  .footer-text {
      font-size: 0.85em;
      font-weight: 700;
      margin: 0; /* 1.5% 0 0 0;*/
      text-align: center;
  }

  .footer-description {
      font-size: 1em; 
      color: #787b82;
      margin-top: 6%; 
      text-align: center;
  }

  .contact-container {
      display: flex;
      flex-direction: column;
      align-items: center; /* Centra el contenido horizontalmente */
      justify-content: center;
      margin-left: 0; /* 2%; */ 
      padding-left: 0; /* 2%; */
      padding-top: 15%;
      text-align: center;
  }
  .contact-title {
      font-size: 1.1em;
      font-weight: 600;
      color: #050f26;
      text-align: center;
  }
  .contact-item {
      margin-top: 8%;
      display: flex;
      align-items: center; /* Centra verticalmente */
      justify-content: center; /* 🔹 Centra horizontalmente */
      width: 100%; /* Asegura que ocupe todo el ancho disponible */
  }
  .contact-link {
      text-decoration: none;
      font-size: 1.2em;
      display: flex;
      align-items: center; /* Centra iconos y texto verticalmente */
      justify-content: center; /* 🔹 Centra horizontalmente */
      /*gap: 2px;*/ /* Espacio entre icono y texto */
      width: 100%; /* Asegura que ocupe todo el ancho disponible */
  }
  .contact-icon {
      color: #a1c24f;
      font-size: 0.9em;
      font-weight: 600;
      margin-top: 1%;
  }
  .contact-number, .contact-email, .contact-address {
      color: #787b82;
      font-size: 0.9em;
      font-weight: bold;
  }



  .info-container {
      margin-left: 1%;
  }

  .info-content {
      max-height: 100%; 
      text-align: center; 
      margin-top: 25%;
  }

  .info-title {
      font-size: 1.1em; 
      font-weight: 600; 
      color: #050f26;
  }

  .info-link {
      text-decoration: none; 
      margin-top: 8px;
  }

  .info-terms {
      color: #787b82; 
      font-size: 0.75em;
  }


  .social-container {
      display: flex;
      justify-content: center;
      align-items: center; /* Centra verticalmente */
      margin: 12%;
      gap: 15px; /* Espacio uniforme entre los íconos */
      /*border: 2px solid black;*/
  }

  .social-item {
      display: flex;
      justify-content: center;
      align-items: center;
       width: 40px; /* 🔹 Establece un ancho uniforme para cada ícono */
      height: 40px; /* 🔹 Establece una altura uniforme */
      /*border: 1px solid red;*/
  }

  .social-link {
      text-decoration: none;
      font-size: 1.5em; 
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
  }

  .social-icon {
      color: #000; 
      font-size: 1.2em; /* Aumenta el tamaño del ícono */
      transition: color 0.3s ease-in-out; /* Agrega una transición suave */

      line-height: 1; /* 🔹 Asegura que no haya espacio extra alrededor */
      display: flex;
      align-items: center; /* 🔹 Centra completamente */
      justify-content: center;
  }


  /* Efecto hover para cambiar de color cuando el usuario pase el mouse */
  .social-link:hover .social-icon {
      color: #a1c24f; /* Color verde al pasar el mouse */
  }








}




/* Tabletas */
@media (max-width: 768px) {
    body {
       
    }
}

