body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f7f3eb;
}
.video-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.overlay-logo img {
  max-width: 400px;
  width: 100%;
}
.icon-section {
  background-color: #f5f0e8; /* Beige similar al fondo de tu imagen */
  padding: 40px 0;
  border-top: 1px solid #000;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 200px;
  flex-wrap: wrap;
}

.icon-container img {
  width: 60px;
  height: auto;
  filter: brightness(0); /* Hace que se vean en negro si son PNGs oscuros */
}
.highlight-message {
  background-color: #d86f37;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Playfair Display', serif;
}

.message-container {
  max-width: 1200px;
  font-size: 1.7rem;
  line-height: 1.8;
}
.offerings-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.offerings-title {
  font-size: 4rem;
  margin-bottom: 40px;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
}

.offerings-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.offering-card {
  background-color: #f5f0e7;
  color: #000;
  width: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.offering-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.offering-text {
  padding: 20px;
}

.offering-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.offering-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.products-section {
  background-color: #f9f5ec;
  padding: 60px 20px;
  text-align: center;
}

.products-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  gap: 30px;
  justify-items: center;
  padding: 0 40px 40px 40px;
  
  /* Mobile-first (1 columna) */
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  /* iPad y tablets – 2 columnas */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1350px) {
  /* Desktop grande – opcional si quieres más de 2 columnas */
  .products-grid {
    grid-template-columns: repeat(2, 1fr); /* Puedes poner 3 si lo deseas */
  }
}

.product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  gap: 20px;
  padding: 20px;
  max-width: 600px;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.product-card img {
  width: 120px;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
}


.product-info {
  text-align: left;
}

.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.product-info p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}

.bottle-showcase {
  background-color: #fdfcf8;
  text-align: center;
  padding: 60px 20px;
}

.bottle-showcase .subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 10px;
}

.bottle-showcase .title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.bottle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.bottle-card {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
}

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

.bottle-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.bottle-card p {
  font-family: 'Playfair Display', serif;
  padding: 20px;
  font-weight: 600;
  font-size: 1.3rem;
  color: #111;
  background-color: #f5f5f5;
  margin: 0;
}
.cta-section {
  font-family: 'Playfair Display', serif;
  background-image: url('images/19.jpg'); /* Asegúrate de usar tu nombre de imagen aquí */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  color: white;
  text-align: center;
  position: relative;
}

.cta-overlay {
  background: rgba(0, 0, 0, 0.4); /* fondo oscuro para legibilidad */
  padding: 40px 380px 40px 40px; /* más padding a la derecha */
  border-radius: 8px;
  margin-left: auto; /* empuja el bloque hacia la derecha */
  max-width: 600px;
}

.cta-overlay h2 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center; /* alinea el texto hacia la derecha */
}

.cigar-room-section {
  background-color: #0d0d0d;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.cigar-room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.cigar-card {
  background-color: #f4f2ef;
  color: #000;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.cigar-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-text {
  padding: 10px;
  text-align: center;
}

.card-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2a2a2a;
}

.card-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

.exclusive-access {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
}

.exclusive-access h2 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.exclusive-access .subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #333;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1500px;
  margin: 0 auto;
}

.benefit-card {
  background-color: #5b0d13;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

.benefit-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 3px;
}

.benefit-card p {
  margin: 0;
  font-size: 1.2rem;
  text-align: left;
}
.testimonials-section {
  background-color: #5b0d13;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* fuerza 2 columnas siempre que quepan */
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #000;
  padding: 30px 20px;
  border-radius: 5px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.testimonial-card p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.testimonial-card strong {
  font-weight: bold;
  font-size: 1.1rem;
  display: block;
}
.split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 100vh;
  color: white;
}

.side-image {
  background-size: cover;
  background-position: center;
}

.side-image.left {
  background-image: url('images/Recurso1.png'); /* izquierda */
}

.side-image.right {
  background-image: url('images/Recurso2.png'); /* derecha */
}

.trio-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0e0e0e;
  color: white;
  text-align: center;
  padding: 60px 0;
  flex-wrap: wrap;
}

.trio-image {
  flex: 1;
  min-width: 300px;
  max-width: 33.3%;
}

.trio-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.trio-content {
  flex: 1;
  max-width: 600px;
  padding: 0 40px;
}

.trio-content h2 {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.trio-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.trio-btn {
  background-color: #9c1c2e;
  color: #fff;
  font-weight: bold;
  padding: 12px 28px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
}

.trio-btn:hover {
  background-color: #fff;
  color: #9c1c2e;
}


@media (max-width: 768px) {
  .icon-container {
    gap: 40px;
  }

  .icon-container img {
    width: 50px;
  }
}

@media screen and (max-width: 768px) {
  .video-hero {
    height: 50vh;
  }
  .cta-overlay {
    margin-left: unset;
    margin: 0 auto;
    padding: 30px;
  }

  .cta-overlay h2 {
    text-align: center;
    font-size: 1.8rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    flex-direction: column;
    text-align: center;
  }

  .product-card img {
    width: 100%;
    max-width: 300px;
  }
  .product-info {
    text-align: center;
}
}