@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* General Styles */
body {
   margin: 0 auto;
   padding: 0;
   font-size: 16px;
   background: #fff;
   width: 100%;
   z-index: 0;
}

body section {
   display: block;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body ul,
body li {
   margin: 0;
   padding: 0;
}

body h1 {
   font-family: 'Lato', sans-serif;
   font-weight: 700;
   text-transform: uppercase;
}

body h2 .brand-subtitle {
   font-family: 'Lato', sans-serif;
   font-size: 1.875em;
   font-weight: 700;
   text-transform: uppercase;
}

body h3 {
   font-family: 'Lato', sans-serif;
   font-size: 1.5em;
   font-weight: 400;
}

body h4 {
   font-family: 'Lato', sans-serif;
   font-size: 0.875em;
   font-weight: 400;
   text-transform: uppercase;
}

body p {
   line-height: 150%;
   font-family: 'Lato', sans-serif;
   font-size: 1.1em;
   color: #999;
}

body li {
   list-style-type: none;
}

body a {
   text-decoration: none;
}

:root {
   --primary-color: #0ead63;
   --secondary-color: #474646;
   --accent-color: #dbebe3;
   --text-light: #FFF8F0;
   --dark-color: #474646;
   --transition-time: 0.4s;
   --section-padding: 4rem 1.5rem;
}

/* Contenedor Principal del Slider */
.deliflor-promo {
   position: relative;
   height: 100vh;
   overflow: hidden;
   background: var(--text-light);
}

/* Contenedor del Slider */
.slider-container {
   position: relative;
   height: 100%;
}

/* Wrapper de Slides */
.slider-wrapper {
   position: relative;
   height: 100%;
}

/* Slide Items */
.slider-item {
   position: absolute;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-position: center;
   opacity: 0;
   transition: opacity var(--transition-time) ease-in-out;
   display: flex;
   align-items: center;
   justify-content: center;
}

/* Slide activo */
.slider-item.active {
   opacity: 1;
}

/* Fondos temáticos */
.articulaciones-theme {
   background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img_sp/index/articulaciones.svg');
}

.controlpeso-theme {
   background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img_sp/index/control_peso.svg');
}

.cuidadopiel-theme {
   background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img_sp/index/cuidadopiel.svg');
}

.control_estres_sueno-theme {
   background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img_sp/index/control_estres_sueno.svg');
}

.saludsexual-theme {
   background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img_sp/index/salud_sexual.svg');
}

/* Contenido de cada Slide */
.slide-content {
   max-width: 100%;
   padding: 2rem;
   text-align: center;
   transform: translateY(30px);
   opacity: 0;
   transition: all var(--transition-time) ease-out;
}

/* Cuando el slide se muestra, también aparece su contenido */
.slider-item.active .slide-content {
   transform: translateY(0);
   opacity: 1;
}

/* Títulos y Subtítulos */
.slide-title {
   font-family: 'Lato', sans-serif;
   font-size: 4.5rem;
   font-weight: 900;
   line-height: 1.1;
   color: var(--text-light);
   text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
   margin: 1.5rem 0;
}

.slide-subtitle {
   font-family: 'Lato', sans-serif;
   font-size: 1.8rem;
   font-weight: 500;
   letter-spacing: 2px;
   color: var(--text-light);
   text-transform: uppercase;
}

/* Divisor */
.divider {
   width: 120px;
   height: 2px;
   background: var(--primary-color);
   margin: 2rem auto;
   transition: width 0.5s ease;
}

/* Botón de Llamada a la Acción */
.cta-btn {
   display: inline-flex;
   align-items: center;
   gap: 0.8rem;
   padding: 1.2rem 2.5rem;
   background: var(--primary-color);
   color: var(--accent-color);
   font-family: 'Lato', sans-serif;
   font-size: 1.1rem;
   font-weight: 700;
   text-transform: uppercase;
   border-radius: 50px;
   transition: all var(--transition-time) ease;
   text-decoration: none;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
   background: var(--dark-color);
   color: var(--primary-color);
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-btnn {
   display: inline-flex;
   align-items: center;
   gap: 0.8rem;
   padding: 1.2rem 2.5rem;
   background: var(--primary-color);
   color: var(--accent-color);
   font-family: 'Lato', sans-serif;
   font-size: 1.1rem;
   margin: 1rem;
   font-weight: 700;
   text-transform: uppercase;
   border-radius: 50px;
   transition: all var(--transition-time) ease;
   text-decoration: none;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btnn:hover {
   background: var(--dark-color);
   color: var(--primary-color);
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Navegación del Slider */
.slider-nav {
   position: absolute;
   bottom: 5%;
   left: 0;
   right: 0;
   z-index: 10;
}

.nav-controls {
   display: flex;
   justify-content: center;
   gap: 1.5rem;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 1.5rem;
}

.nav-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   color: var(--text-light);
   cursor: pointer;
   opacity: 0.7;
   transition: opacity var(--transition-time) ease;
}

.nav-item:hover,
.nav-item.active {
   opacity: 1;
}

/* Indicador de Progreso */
.progress-indicator {
   width: 100px;
   height: 3px;
   background: rgba(255, 255, 255, 0.3);
   margin-bottom: 0.8rem;
   position: relative;
   overflow: hidden;
}

.progress-bar {
   position: absolute;
   left: 0;
   top: 0;
   height: 100%;
   width: 0;
   background: var(--primary-color);
}

/* Cuando el nav-item está activo, se activa la animación de la barra */
.nav-item.active .progress-bar {
   animation: progress 5s linear forwards;
}

.nav-item:not(.active) .progress-bar {
   animation: none !important;
   width: 0 !important;
}

/* Keyframes para la animación de la barra de progreso */
@keyframes progress {
   0% {
      width: 0;
   }

   100% {
      width: 100%;
   }
}


/* Section 3 - Nuestra Esencia */
.section-3 {
   padding: var(--section-padding);
   background: #fff;
}

.section-3_grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   max-width: 1200px;
   margin: 0 auto;
}

.section-3_grid_img {
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-3_grid_img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   min-height: 400px;
}

.section-3_grid_info {
   box-sizing: border-box;
   overflow: hidden;
   max-width: 100%;
}

.section-3_grid_info h2 {
   color: var(--dark-color);
   font-size: 2.5rem;
   font-weight: 700;
   line-height: 1.2;
   margin-bottom: 2rem;
}

.section-3_grid_info_wrap {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1.5rem;
}

.section-3_grid_info_box {
   background: var(--primary-color);
   padding: 1.5rem;
   border-radius: 8px;
   display: flex;
   align-items: center;
   gap: 1rem;
   transition: transform var(--transition-time) ease;
}

.section-3_grid_info_box:hover {
   transform: translateY(-5px);
}

.section-3_grid_info_box img {
   width: 50px;
   height: 50px;
   object-fit: contain;
   filter: brightness(0) invert(1);
}

.section-3_grid_info_box p {
   color: #fff;
   font-weight: 600;
   margin: 0;
   flex: 1;
}


/* Estilos actualizados para Section-4 */
.section-4 {
   background: var(--primary-color);
   padding: 3rem 1.5rem;
   margin: 4rem auto;
   border-radius: 16px;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
   max-width: 1200px;
   width: 90%;
}

.section-4-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   align-items: center;
}

.section-4-img img {
   width: 100%;
   height: 280px;
   object-fit: cover;
   border-radius: 12px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.section-4-info h2 {
   color: #fff;
   font-size: 2rem;
   line-height: 1.2;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.section-4-grid-list {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1.5rem;
}

.section-4-list-column ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

.section-4-list-column li {
   color: #fff;
   font-size: 1.1rem;
   margin-bottom: 1rem;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.section-4-list-column i {
   color: #fff;
   font-size: 0.5rem;
}

.section-4-form {
   background: #fff;
   padding: 2rem;
   border-radius: 12px;
   box-sizing: border-box;
   overflow: hidden;
   max-width: 100%;
}

.section-4-form p {
   color: var(--secondary-color);
   font-size: 1.25rem;
   margin-bottom: 1.5rem;
   line-height: 1.4;
}

.deliflor-form {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.deliflor-form input {
   padding: 0.8rem;
   border: 1px solid var(--secondary-color);
   border-radius: 8px;
   font-size: 1rem;
   background: rgba(255, 255, 255, 0.9);
}

.deliflor-form button {
   background: var(--primary-color);
   color: #fff;
   padding: 0.8rem 1.5rem;
   border: 1px solid var(--secondary-color);
   border-radius: 8px;
   font-weight: 700;
   text-transform: uppercase;
   cursor: pointer;
   transition: all 0.3s ease;
}

.deliflor-form button:hover {
   background: var(--secondary-color);
   transform: translateY(-2px);
   color: var(--primary-color)
}

.privacy-link {
   display: block;
   color: var(--secondary-color);
   text-align: center;
   margin-top: 1rem;
   font-size: 0.9rem;
   text-decoration: underline;
}

/* Sección 5 - Atributos */
.section-5 {
   width: 90%;
   max-width: 1200px;
   margin: 0 auto;
   padding: 4rem 0;
}

.section-5_title {
   color: var(--dark-color);
   font-size: 2.5rem;
   text-align: center;
   margin-bottom: 3rem;
   font-weight: 700;
}

.section-5_grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.section-5_card {
   border-radius: var(--border-radius);
   overflow: hidden;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   transition: transform var(--transition-time) ease;
   height: 100%;
   display: flex;
   flex-direction: column;
   border-radius: 8px;
}

.section-5_card:hover {
   transform: translateY(-10px);
}

.section-5_card img {
   width: 100%;
   height: 250px;
   object-fit: cover;
}

.section-5_card-content {
   padding: 1.5rem;
   flex-grow: 1;
   display: flex;
   flex-direction: column;
   background-color: var(--primary-color);
   border-radius: 0px;
}

.section-5_card h2 {
   color: #fff;
   font-size: 1.8rem;
   margin-bottom: 1rem;
   font-weight: 700;
}

.tetra {
   color: #fff;
}

.section-5_card p {
   color: #fff;
   margin-bottom: 1rem;
   flex-grow: 1;
}

/*Eight Section*/
.eighth_section {
   box-sizing: border-box;
   width: 100%;
   max-width: 100%;
   height: auto;
   margin: 0 auto;
}

.eighth_section_grid {
   background-size: cover;
   display: grid;
   grid-template-columns: 1fr 1fr 1fr 1fr;
   gap: 2rem;
   padding: 1rem 3rem;
   margin: auto;
}

.eighth_section_grid_div {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}

.eighth_section_grid_div img {
   width: 10%;
   height: auto;
}

.eighth_section_grid_div p {
   font-size: 14px;
   color: var(--secondary-color);
   font-weight: 700;
   line-height: 130%;
   margin-bottom: 0;
}

/*Media Queries: Resolutions Start*/
/* Responsive Breakpoints */


/* Media Queries: Resolutions Start */
/* Añadir en los media queries existentes */
/* Resolution 1481 px */
@media (max-width: 1481px) {
   .slide-title {
      font-size: 4rem !important;
   }

   .section-3_grid_info h2 {
      font-size: 2.2rem;
   }

   .section-5_title {
      font-size: 2.2rem;
   }
}

/* Resolution 1480 - 1281 */
@media (min-width: 1281px) and (max-width: 1480px) {
   .slide-subtitle {
      font-size: 1.6rem !important;
   }

   .section-4-info h2 {
      font-size: 1.8rem;
   }
}

/* Resolution 1280 - 981 */
@media (min-width: 981px) and (max-width: 1280px) {
   body {
      font-size: 15px;
   }

   .slide-title {
      font-size: 3.2rem !important;
   }

   .section-3_grid_info h2 {
      font-size: 2rem;
   }


   /* Sección 4 - Conocer newsletter */
   .section-4 {
      background: var(--primary-color);
      padding: 1rem 1.2rem;
      margin: 2rem auto;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      max-width: 1200px;
      width: 90%;
   }

   .section-4-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      align-items: center;
   }

   .section-4-img img {
      width: 100%;
      height: 225px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
   }

   .section-4-info h2 {
      color: #fff;
      font-size: 1.5rem;
      line-height: 1.2;
      margin-bottom: 2rem;
      font-weight: 700;
   }

   .section-4-grid-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
   }

   .section-4-list-column li {
      color: #fff;
      font-size: 1rem;
      margin-bottom: 2rem;
   }

   .section-4-list-column i {
      color: #fff;
      font-size: 0.5rem;
   }

   .section-4-form {
      background: #fff;
      padding: 1rem;
      border-radius: 12px;
      box-sizing: border-box;
      overflow: hidden;
      max-width: 100%;
   }

   .section-4-form p {
      color: var(--secondary-color);
      font-size: 1rem;
      margin-bottom: 1.5rem;
      line-height: 1.4;
   }

   .deliflor-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
   }

   .deliflor-form input {
      padding: 0.8rem;
      border: 1px solid var(--secondary-color);
      border-radius: 8px;
      font-size: .8rem;
      background: rgba(255, 255, 255, 0.9);
   }

   .deliflor-form button {
      background: var(--primary-color);
      color: var(--secondary-color);
      padding: 0.8rem 1.5rem;
      border: 1px solid var(--secondary-color);
      border-radius: 8px;
      font-weight: 700;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
   }

   .deliflor-form button:hover {
      background: var(--secondary-color);
      transform: translateY(-2px);
      color: var(--primary-color)
   }

   .privacy-link {
      display: block;
      color: var(--secondary-color);
      text-align: center;
      margin-top: 1rem;
      font-size: 0.9rem;
      text-decoration: underline;
   }
}

/* Resolution 980 - 681 */
@media (min-width: 851px) and (max-width: 980px) {
   body {
      font-size: 14px;
   }

   .slide-title {
      font-size: 2.5rem !important;
   }


   /* Sección 4 - Conocer newsletter*/
   .section-4 {
      background: var(--primary-color);
      padding: 1rem 1.2rem;
      margin: 2rem auto;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      max-width: 1200px;
      width: 90%;
   }

   .section-4-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      align-items: center;
   }

   .section-4-img img {
      width: 100%;
      height: 225px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
   }

   .section-4-info h2 {
      color: var(--secondary-color);
      font-size: 1.5rem;
      line-height: 1.2;
      margin-bottom: 2rem;
      font-weight: 700;
   }

   .section-4-grid-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
   }

   .section-4-list-column li {
      color: var(--secondary-color);
      font-size: 1rem;
      margin-bottom: 2rem;
   }

   .section-4-list-column i {
      color: #fff;
      font-size: 0.5rem;
   }

   .section-4-form {
      background: #fff;
      padding: 1rem;
      border-radius: 12px;
      box-sizing: border-box;
      overflow: hidden;
      max-width: 100%;
   }

   .section-4-form p {
      color: var(--secondary-color);
      font-size: 1rem;
      margin-bottom: 1.5rem;
      line-height: 1.4;
   }

   .deliflor-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
   }

   .deliflor-form input {
      padding: 0.8rem;
      border: 1px solid var(--secondary-color);
      border-radius: 8px;
      font-size: .8rem;
      background: rgba(255, 255, 255, 0.9);
   }

   .deliflor-form button {
      background: var(--primary-color);
      color: var(--secondary-color);
      padding: 0.8rem 1.5rem;
      border: 1px solid var(--secondary-color);
      border-radius: 8px;
      font-weight: 700;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
   }

   .deliflor-form button:hover {
      background: var(--secondary-color);
      transform: translateY(-2px);
      color: var(--primary-color)
   }

   .privacy-link {
      display: block;
      color: var(--secondary-color);
      text-align: center;
      margin-top: 1rem;
      font-size: 0.9rem;
      text-decoration: underline;
   }


   /* Sección 5 - Atributos */

   .section-5_title {
      color: var(--dark-color);
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 2rem;
      font-weight: 700;
   }

   .section-5_grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
   }

   .section-5_card-content {
      padding: 1rem;
      flex-grow: 2;
      border-radius: 0px;
   }

   .section-5_card h2 {
      color: var(--secondary-color);
      font-size: 1.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
   }

   .section-5_card p {
      color: var(--secondary-color);
      margin-bottom: 1rem;
      flex-grow: 1;
      font-size: .8rem;
   }
}

@media (min-width: 681px) and (max-width:850px) {

   /* Sección 3 - Nuestra Esencia */

   .section-3_grid {
      display: grid;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
   }

   .section-3_grid_info h2 {
      color: var(--dark-color);
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 2rem;
   }

   .section-3_grid_info_wrap {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 1rem;
   }

   .section-3_grid_info_box {
      background: var(--primary-color);
      padding: 1rem;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: transform var(--transition-time) ease;
   }

   .section-3_grid_info_box p {
      color: #fff;
      font-weight: 400;
      margin: 0;
      flex: 1;
   }


   /* Sección 4 - Conocer newsletter */
   .section-4 {
      padding: 1rem 1.2rem;
   }

   .section-4-img img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
   }

   .section-4-info h2 {
      font-size: 1.1rem;
      line-height: 1.2;
      margin-bottom: 2rem;
   }

   .section-4-grid-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
   }

   .section-4-list-column li {
      color: #fff;
      font-size: .8rem;
      margin-bottom: 2rem;
   }

   .section-4-list-column i {
      color: #fff;
      font-size: 0.5rem;
   }

   .section-4-form {
      background: #fff;
      padding: 1rem;
      border-radius: 12px;
      box-sizing: border-box;
      overflow: hidden;
      max-width: 100%;
   }

   .section-4-form p {
      color: var(--secondary-color);
      font-size: .8rem;
      margin-bottom: 1.2rem;
      line-height: 1.4;
   }

   .deliflor-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
   }

   .deliflor-form input {
      padding: 0.5rem;
      border: 1px solid var(--secondary-color);
      border-radius: 8px;
      font-size: .7rem;
      background: rgba(255, 255, 255, 0.9);
   }

   .deliflor-form button {
      background: var(--primary-color);
      color: var(--secondary-color);
      padding: 0.4rem .7rem;
      border: 1px solid var(--secondary-color);
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: .7rem;
   }

   .deliflor-form button:hover {
      background: var(--secondary-color);
      transform: translateY(-2px);
      color: var(--primary-color)
   }

   .privacy-link {
      display: block;
      color: var(--secondary-color);
      text-align: center;
      margin-top: 1rem;
      font-size: 0.7rem;
      text-decoration: underline;
   }


   /* Sección 5 - Atributos */

   .section-5_title {
      color: var(--dark-color);
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 2rem;
      font-weight: 700;
   }

   .section-5_grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
   }

   .section-5_card-content {
      padding: 1rem;
      flex-grow: 2;
      border-radius: 0px;
   }

   .section-5_card h2 {
      color: #fff;
      font-size: 1.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
   }

   .section-5_card p {
      color: #fff;
      margin-bottom: 1rem;
      flex-grow: 1;
      font-size: .8rem;
   }
}

/* Resolution 680 - 481 */
@media (min-width: 481px) and (max-width: 680px) {

   /* Sección 3 - Nuestra Esencia */

   .section-3_grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
   }

   .section-3_grid_img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 300px;
   }


   .section-3_grid_info h2 {
      color: var(--dark-color);
      font-size: 1.1rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 2rem;
   }

   .section-3_grid_info_wrap {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 1rem;
   }

   .section-3_grid_info_box {
      background: var(--primary-color);
      padding: 1rem;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: transform var(--transition-time) ease;
   }

   .section-3_grid_info_box p {
      color: #fff;
      font-weight: 400;
      margin: 0;
      flex: 1;
   }

   /* Sección 4 - Conocer newsletter */
   .section-4 {
      padding: .8rem 1rem;
   }

   .section-4-img img {
      width: 100%;
      height: 110px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
   }

   .section-4-info h2 {
      font-size: .6rem;
      line-height: 1.2;
      margin-bottom: 1.2rem;
   }

   .section-4-grid-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
   }

   .section-4-list-column li {
      color: #fff;
      font-size: .6rem;
      margin-bottom: 2rem;
   }

   .section-4-list-column i {
      color: #fff;
      font-size: 0.5rem;
   }

   .section-4-form {
      background: #fff;
      padding: 1rem;
      border-radius: 12px;
      box-sizing: border-box;
      overflow: hidden;
      max-width: 100%;
   }

   .section-4-form p {
      color: var(--secondary-color);
      font-size: .5rem;
      margin-bottom: 1.2rem;
      line-height: 1.4;
   }

   .deliflor-form {
      display: flex;
      flex-direction: column;
      gap: .6rem;
   }

   .deliflor-form input {
      padding: 0.2rem;
      border: 1px solid var(--secondary-color);
      border-radius: 8px;
      font-size: .4rem;
      background: rgba(255, 255, 255, 0.9);
   }

   .deliflor-form button {
      background: var(--primary-color);
      color: var(--secondary-color);
      padding: 0.2rem .7rem;
      border: 1px solid var(--secondary-color);
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: .4rem;
   }

   .deliflor-form button:hover {
      background: var(--secondary-color);
      transform: translateY(-2px);
      color: var(--primary-color)
   }

   .privacy-link {
      display: block;
      color: var(--secondary-color);
      text-align: center;
      margin-top: 1rem;
      font-size: 0.5rem;
      text-decoration: underline;
   }

   /* Sección 5 - Atributos */


   .section-5 {
      padding: 2rem 0;
   }


   .section-5_card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
   }

   .section-5_title {
      color: var(--dark-color);
      font-size: 1.5rem;
      text-align: center;
      margin-bottom: 2rem;
      font-weight: 700;
   }

   .section-5_grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
   }

   .section-5_card-content {
      padding: .5rem;
      flex-grow: 1;
      border-radius: 0px;
   }

   .section-5_card h2 {
      color: #fff;
      font-size: 1rem;
      margin-bottom: 1rem;
      font-weight: 700;
   }

   .section-5_card p {
      color: #fff;
      margin-bottom: 1rem;
      flex-grow: 1;
      font-size: .7rem;
   }
}

/* Resolution 381px - 480px */
@media (min-width: 381px) and (max-width: 480px) {

   /* Hero Slider Improvements */
   #hero-slider.deliflor-promo {
      height: 60vh;
   }

   .slide-content {
      padding: 1.5rem;
      transform: translateY(20px);
   }

   .slide-subtitle {
      font-size: 1rem !important;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
   }

   .slide-title {
      font-size: 1.8rem !important;
      line-height: 1.2 !important;
      margin: 0.8rem 0;
   }

   .divider {
      width: 80px;
      margin: 1.2rem auto;
   }

   .cta-btn {
      padding: 0.9rem 1.8rem;
      font-size: 0.9rem;
      gap: 0.5rem;
   }

   /* Slider Navigation */
   .slider-nav {
      bottom: 15px;
   }

   .nav-controls {
      gap: 0.8rem;
      padding: 0 1rem;
   }

   .progress-indicator {
      width: 70px;
      height: 2px;
   }

   .nav-number {
      font-size: 0.8rem;
   }

   .nav-label {
      font-size: 0.7rem;
   }

   /* Section 3 Improvements */
   .section-3 {
      padding: 2.5rem 1rem;
   }

   .section-3_grid {
      grid-template-columns: 1fr;
      gap: 2rem;
   }

   .section-3_grid_info h2 {
      font-size: 1.6rem;
      text-align: center;
      margin-bottom: 1.8rem;
   }

   .section-3_grid_info_wrap {
      grid-template-columns: 1fr;
      gap: 1rem;
   }

   .section-3_grid_info_box {
      padding: 1.2rem;
      gap: 0.8rem;
   }

   .section-3_grid_info_box .tetra {
      font-size: 1.3rem;
      min-width: 24px;
   }

   .section-3_grid_info_box p {
      font-size: 0.9rem !important;
      line-height: 1.4;
   }

   /* Section 4 Improvements */
   .section-4 {
      padding: 1.8rem 1rem;
      margin: 2.5rem auto;
      border-radius: 12px;
      width: 85%;
   }

   .section-4-grid {
      grid-template-columns: 1fr;
      gap: 1.8rem;
      text-align: center;
   }

   .section-4-img img {
      height: 140px;
      border-radius: 10px;
   }

   .section-4-info h2 {
      font-size: 1.4rem;
      margin-bottom: 1.2rem;
   }

   .section-4-grid-list {
      grid-template-columns: 1fr;
      gap: 0.8rem;
      justify-items: center;
   }

   .section-4-list-column ul {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
   }

   .section-4-list-column li {
      font-size: 0.95rem;
      margin-bottom: 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
   }

   .section-4-list-column i {
      font-size: 0.5rem;
   }

   .section-4-form {
      padding: 1.5rem;
   }

   .section-4-form p {
      font-size: 0.95rem;
      margin-bottom: 1.2rem;
   }

   .deliflor-form {
      gap: 0.8rem;
   }

   .deliflor-form input {
      padding: 0.7rem;
      font-size: 0.9rem;
   }

   .deliflor-form button {
      padding: 0.7rem 1.2rem;
      font-size: 0.9rem;
   }

   .privacy-link {
      font-size: 0.8rem;
      margin-top: 1rem;
   }

   /* Section 5 Improvements */
   .section-5 {
      padding: 2.5rem 0;
      width: 95%;
   }

   .section-5_title {
      font-size: 1.6rem;
      margin-bottom: 2rem;
   }

   .section-5_grid {
      grid-template-columns: 1fr;
      gap: 1.8rem;
   }

   .section-5_card {
      border-radius: 10px;
   }

   .section-5_card img {
      height: 160px;
   }

   .section-5_card-content {
      padding: 1.2rem;
   }

   .section-5_card h2 {
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
   }

   .section-5_card p {
      font-size: 0.9rem;
      line-height: 1.5;
   }
}

/* Additional improvements for touch devices */
@media (max-width: 480px) and (hover: none) {

   .cta-btn:hover,
   .deliflor-form button:hover {
      transform: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
   }

   .nav-item:active {
      opacity: 0.8;
   }
}

/* ===== DISPOSITIVOS 380px - 280px ===== */
@media (max-width: 380px) and (min-width: 280px) {

   /* Ajustes generales de contenedor */
   .main-container {
      padding: 0 8px;
   }

   /* Hero Slider - Ajustes proporcionales */
   #hero-slider.deliflor-promo {
      height: 45vh;
      min-height: 250px;
   }

   .slide-content {
      padding: 0.8rem;
      transform: translateY(10px);
   }

   .slide-subtitle {
      font-size: 0.95rem !important;
      margin-bottom: 0.4rem;
   }

   .slide-title {
      font-size: 1.6rem !important;
      line-height: 1.15 !important;
      margin: 0.5rem 0;
   }

   .divider {
      width: 50px;
      margin: 0.8rem auto;
      height: 1.5px;
   }

   .cta-btn {
      padding: 0.7rem 1.3rem;
      font-size: 0.85rem;
   }

   /* Navegación del slider más compacta */
   .slider-nav {
      bottom: 12px;
   }

   .nav-controls {
      gap: 0.5rem;
      padding: 0 0.5rem;
   }

   .progress-indicator {
      width: 45px;
      height: 2px;
      margin-bottom: 0.4rem;
   }

   .nav-number {
      font-size: 0.7rem;
   }

   .nav-label {
      font-size: 0.65rem;
   }

   /* Section 3 - Nuestros pilares */
   .section-3 {
      padding: 1.8rem 0.5rem;
   }

   .section-3_grid {
      gap: 1.5rem;
   }

   .section-3_grid_info h2 {
      font-size: 1.5rem;
      margin-bottom: 1.2rem;
      text-align: center;
   }

   .section-3_grid_info_wrap {
      grid-template-columns: 1fr;
      gap: 0.8rem;
   }

   .section-3_grid_info_box {
      padding: 0.9rem;
      gap: 0.7rem;
   }

   .section-3_grid_info_box .tetra {
      font-size: 1.2rem;
      min-width: 22px;
   }

   .section-3_grid_info_box p {
      font-size: 0.85rem !important;
      line-height: 1.3;
   }

   /* Section 4 - Newsletter */
   .section-4 {
      padding: 1.5rem 0.8rem;
      margin: 1.8rem auto;
      border-radius: 10px;
      width: 95%;
   }

   .section-4-grid {
      gap: 1.3rem;
   }

   .section-4-img img {
      height: 110px;
      border-radius: 8px;
   }

   .section-4-info h2 {
      font-size: 1.3rem;
      margin-bottom: 0.9rem;
   }

   .section-4-grid-list {
      gap: 0.7rem;
   }

   .section-4-list-column li {
      font-size: 0.88rem;
      gap: 0.4rem;
   }

   .section-4-list-column i {
      font-size: 0.45rem;
   }

   .section-4-form {
      padding: 1.1rem;
   }

   .section-4-form p {
      font-size: 0.9rem;
      margin-bottom: 0.9rem;
   }

   .deliflor-form {
      gap: 0.7rem;
   }

   .deliflor-form input {
      padding: 0.65rem;
      font-size: 0.85rem;
   }

   .deliflor-form button {
      padding: 0.65rem 1.1rem;
      font-size: 0.85rem;
   }

   .privacy-link {
      font-size: 0.75rem;
      margin-top: 0.7rem;
   }

   /* Section 5 - Atributos */
   .section-5 {
      padding: 1.8rem 0;
      width: 95%;
   }

   .section-5_title {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
   }

   .section-5_grid {
      gap: 1.3rem;
   }

   .section-5_card {
      border-radius: 8px;
   }

   .section-5_card img {
      height: 150px;
   }

   .section-5_card-content {
      padding: 1.1rem;
   }

   .section-5_card h2 {
      font-size: 1.2rem;
      margin-bottom: 0.7rem;
   }

   .section-5_card p {
      font-size: 0.85rem;
      line-height: 1.4;
   }

   /* Mejoras de usabilidad para touch */
   .cta-btn,
   .deliflor-form button {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
   }
}