/* Balsamo Natural page styles */

/* Hero Section */
.balsamo-hero {
  min-height: 90vh;
  background-color: var(--color-cream);
  position: relative;
  margin-top: 70px;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(250, 246, 240, 0.8), rgba(106, 124, 79, 0.3));
  z-index: 1;
}

.balsamo-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.balsamo-text {
  padding-right: 2rem;
}

.balsamo-text h1 {
  font-family: var(--font-title);
  font-size: 3.2rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
}

.balsamo-text .subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-honey);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.hero-tagline {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--color-brown);
}

.balsamo-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.balsamo-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.balsamo-image img:hover {
  transform: scale(1.05);
}

/* Usos Section */
.balsamo-usos {
  background-color: white;
  padding: 5rem 0;
}

.balsamo-usos h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.usos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.uso-item {
  background-color: var(--color-cream);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.uso-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.uso-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.uso-item p {
  font-weight: 500;
}

.uso-apto {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 2rem;
}

/* Ingredientes Section */
.balsamo-ingredientes {
  background-color: var(--color-cream);
  padding: 5rem 0;
}

.balsamo-ingredientes h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.ingredientes-table {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ingrediente-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.ingrediente-row.header {
  background-color: var(--color-olive);
  color: white;
  font-weight: 600;
}

.ingrediente-cell {
  padding: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ingrediente-row:last-child .ingrediente-cell {
  border-bottom: none;
}

.ing-emoji {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.ingredientes-garantia {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.ingredientes-garantia p {
  font-weight: 500;
  font-size: 1.1rem;
}

/* Por qué es diferente */
.balsamo-diferente {
  background-color: white;
  padding: 5rem 0;
}

.balsamo-diferente h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.diferente-descripcion {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
}

.diferente-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature {
  background-color: var(--color-cream);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature h3 {
  font-family: var(--font-title);
  color: var(--color-olive);
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

/* Imagenes Section */
.balsamo-imagenes {
  background-color: var(--color-cream);
  padding: 5rem 0;
  margin-top: -3rem;
}

.balsamo-imagenes h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.imagenes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.imagen-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.imagen-item:hover {
  transform: translateY(-10px);
}

.imagen-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.imagen-item p {
  padding: 1rem;
  text-align: center;
  font-weight: 500;
}

/* Testimonials */
.balsamo-testimonios {
  background-color: var(--color-cream);
  padding: 5rem 0;
}

.balsamo-testimonios h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonio {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonio::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 4rem;
  font-family: var(--font-title);
  color: var(--color-honey);
  opacity: 0.2;
  line-height: 1;
}

.testimonio-text {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonio-autor {
  text-align: right;
  font-weight: 500;
  color: var(--color-olive);
}

/* Pedido section */
.balsamo-pedido {
  background-color: white;
  padding: 5rem 0;
}

.balsamo-pedido h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.pedido-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-item {
  background-color: var(--color-cream);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-item p {
  font-weight: 500;
}

.pedido-contacto {
  background-color: var(--color-cream);
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pedido-contacto p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.contacto-opciones {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contacto-opcion {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 500;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contacto-opcion:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contacto-icon {
  font-size: 1.5rem;
  margin-right: 0.8rem;
}

.pedido-contacto .cta-button {
  margin-top: 1rem;
}

/* Recomendaciones de Uso Section */
.balsamo-recomendaciones {
  background-color: var(--color-cream);
  padding: 3rem 0;
  margin-top: -2rem;
}

.balsamo-recomendaciones h2 {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.balsamo-recomendaciones h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--color-honey);
}

.recomendaciones-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.recomendaciones-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.recomendaciones-content p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .balsamo-container {
    grid-template-columns: 1fr;
  }
  
  .balsamo-text {
    text-align: center;
    padding-right: 0;
  }
  
  .balsamo-text h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .usos-grid,
  .diferente-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pedido-info {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .imagenes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .usos-grid,
  .testimonios-grid {
    grid-template-columns: 1fr;
  }
  
  .diferente-features {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .ingrediente-row {
    grid-template-columns: 1fr;
  }
  
  .ingrediente-row.header .ingrediente-cell:last-child {
    display: none;
  }
  
  .ingrediente-cell:first-child {
    font-weight: 600;
    background-color: var(--color-cream);
  }
  
  .balsamo-text h1 {
    font-size: 2.5rem;
  }
  
  .contacto-opciones {
    flex-direction: column;
    align-items: center;
  }
  
  .contacto-opcion {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .imagenes-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}