/* ======== ESTILOS GENERALES ======== */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    background-color: #fff;
    color: #fff;
    text-align: center;
    min-height: 100vh;
  }
  #tienda{
    background-color: #fff;
}

  html {
    font-size: 16px; /* Tamaño de fuente base */
  }
  
  /* ======== HEADER ======== */
  header {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s;
  }
  .logo {
    position: absolute;
    left: 20px;
  }
  .logo img {
    height: 75px;
    width: auto;
  }
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }
  .nav-links li {
    display: inline;
  }
  .nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  .nav-links a:hover {
    color: #9fdb2a;
  }
  .menu-toggle {
    font-size: 2rem;
    color: #9fdb2a;
    display: none;
    cursor: pointer;
  }
  
  /* ======== CARRUSEL ======== */
  .carousel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  .carousel-container {
    display: flex;
    transition: transform 0.5s ease;
  }
  .carousel-slide {
    height: auto;
    min-width: 100%;
    position: relative;
    text-align: center;
    max-height: 1010px;
    object-fit: cover;
  }
  .carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 100vh;
    
  }
  .carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 50px;
  }
 

  
  /* ======== INGREDIENTES ======== */
  .ingredientes-container {
    background-image: url(''); /* Define la imagen si la necesitas */
    background-size: cover;
    background-position: center;
    padding: 20px;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: auto;
    border-radius: 10px;
  }
  h1 {
    color: #739800;
  }
  .ingredient {
    margin: 20px 0;
    padding: 10px;
    border-bottom: 1px solid #9fdb2a;
  }
  .ingredient h2 {
    color: #739800;
  }
  
  /* ======== SECCIÓN IMÁGENES ======== */
 /* Para dispositivos móviles y pantallas en general: */
.image-section {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Esto genera una proporción 16:9 (9/16*100) */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }



  /* ======== SECCIÓN IMÁGENES CURVA ======== */

  .portada{
    width: 100%;
    background-image:
    linear-gradient(-225deg, 
    rgba(105, 213, 78, 0.404) 0%, 
    rgba(197, 193, 255, 0.404) 56%, 
    rgba(210, 138, 45, 0.537) 75%, 
    #9fdb2a 100%),
    url("/img/imag6.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
  }

  .contenedor-textos {
    position: absolute;
    bottom: 20px;       /* Distancia desde la parte inferior */
    left: 50%;          /* Para centrar horizontalmente */
    transform: translateX(-50%);
    text-align: center;
    width: 100%;        /* Opcional, para que ocupe todo el ancho del contenedor */
  }

  .curva{
    height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #9fdb2a;
    text-align: center;
}

.contenedor-textos{
    padding-bottom: 100px;
}

.curva h1{
    font-size: 30px;
    color:white;
    bottom: 20;
}

.copy{
    font-size: 24px;
    padding: 20px 0;
    font-weight: 300;
}

.wave{
  
    bottom: 0;
    left: 0;
    width: 100%;
}
  
  /* Opcional: para pantallas grandes, puedes forzar que la sección ocupe toda la altura del viewport */
  @media (min-width: 1024px) {
    .image-section {
      height: 100vh;
      padding-top: 0;
    }
  }
  
  /* ======== interactive-button ======== */
  .interactive-button {
    background-color: #9fdb2a;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
  }
  .interactive-button:hover {
    background-color: #9fdb2a;
    transform: scale(1.05);
  }
  .interactive-button:active {
    background-color: #9fdb2a;
    transform: scale(0.98);
  }
  
  

  
  
  /* ======== OFERTA ESPECIAL ======== */
  #oferta-especial {
    text-align: center;
    padding: 50px 20px;
    background-color: #FFF;
    color: #ff7f00;
  }
  #oferta-especial h2 {
    font-size: 2em;
    margin-bottom: 10px;
  }
  #oferta-especial p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  .oferta-button {
    display: inline-block;
    background-color: #ff7f00;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }
  .oferta-button:hover {
    background-color: #e66a00;
    color: white;
    transform: scale(1.05);
  }


  /* ======== aceites ======== */


 /* Contenedor principal con fondo negro */
 .essential-oils {
  position: relative;
  background-color: #000;
  color: #fff;
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
}

/* Título principal */
.essential-oils h1 {
  color: #9fdb2a;
  font-size: 2em;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* Contenedor para los cuatro aceites */
.oils-container {
  display: flex;
  flex-wrap: wrap;       /* Permite que se adapte en pantallas pequeñas */
  justify-content: center;
  gap: 30px;             /* Espacio entre los ítems */
  max-width: 1200px;
  margin: 0 auto;
}

/* Cada sección individual (aceite) */
.oil-item {
  background-color: #111;
  border-radius: 8px;
  padding: 20px;
  width: 260px;
  box-sizing: border-box;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.2); /* Efecto de brillo */
}

/* Título de cada aceite */
.oil-item h2 {
  color: #9fdb2a;
  margin-bottom: 10px;
  font-size: 1.2em;
}

/* Texto descriptivo de cada aceite */
.oil-item p {
  font-size: 0.95em;
  line-height: 1.5em;
  margin: 0;
}

/* Opcional: si tienes imágenes individuales para cada aceite,
   puedes incluirlas en lugar de (o junto a) los textos.
   Por ejemplo:
   .oil-item img {
     width: 80px;
     height: 80px;
     object-fit: cover;
     border-radius: 50%;
     margin-bottom: 10px;
   }
*/

/* Imagen de la hoja de cannabis en la parte inferior izquierda */
.essential-oils::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 100px;
  height: 100px;
  background: url('ruta/hoja-cannabis.png') no-repeat center/contain;
  opacity: 0.7;
}

/* Imagen del incienso (o lo que desees) en la parte superior derecha */
.essential-oils::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background: url('ruta/incienso.png') no-repeat center/contain;
  opacity: 0.7;
}

/* Ajustes responsivos (opcional) */
@media (max-width: 768px) {
  .oil-item {
    width: 100%;
  }
}

/*--------iframe------*/

iframe {
  width: 100%;
  height: 100vh;
  border: none;
}

  
  /* ======== FOOTER ======== */
  footer {
    border-top: 6px solid #9fdb2a;
    border-bottom: 3px solid #9fdb2a;
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .footer-links {
    margin-bottom: 10px;
  }
  .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #9fdb2a;
  }
  .footer-social {
    margin-bottom: 10px;
  }
  .footer-social a {
    color: #fff;
    margin: 0 5px;
    font-size: 1.5rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #9fdb2a;
  }

  
  /*--------------------*/



  
  /* ======== MEDIA QUERIES RESPONSIVOS ======== */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
    }
    .nav-links.active {
      display: flex;
    }
    .menu-toggle {
      display: block;
    }
  }

  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      padding: 10px 0;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }

  @media (max-width: 768px) {
    .oil-item {
      width: 100%;
    }
    
    /* Asegúrate de que la imagen del carrusel se ajuste correctamente */
    .carousel-slide img {
      width: 100%;
      height: auto;
      max-height: 50vh; /* Ajusta el valor según sea necesario */
    }
  
    /* Ajusta la altura del header en dispositivos pequeños */
    header {
      padding: 10px 15px;
    }
  }

  html {
    font-size: 16px; /* Esto define el tamaño base */
  }
  
  h1 {
    font-size: 2rem; /* Escalará según el tamaño base */
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  p {
    font-size: 1rem;
  }

  .portada {
    background-size: cover;
    background-position: center center;
  }
  
  @media (max-width: 768px) {
    .portada {
      background-size: cover;
      background-position: top center;
    }
  }

  body, html {
    overflow-x: hidden;
  }
  
  
  
  
  