/* CSS General y Reset */
.landing_page * {
  font-family: Nunito, sans-serif;
}

body {
  font-family: "Lato", sans-serif;
  margin: 0;
}

:root {
  --quarter-spanish-white: #f9f7ea;
  --gamboge: #df9908;
  --tacha: #d4b569;
  --russett: #735b56;
  --lucky: #a99318;
  --sahara: #b89611;
  --buff: #f2d785;
  --dusty-gray: #a99394;
  --copper-rose: #986c6c;
  --anzac: #e1bf40;
}

/* Estilos generales de texto */
.landing_page .text-blk {
  margin: 0;
  line-height: 25px;
}

/* Estructura responsive */
.responsive-cell-block {
  min-height: 75px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: flex-start;
}

.responsive-container-block.container {
  margin: 0 auto 50px;
  max-width: 1320px;
}

.responsive-container-block.big-container {
  padding: 0 50px;
}

/* Header animado */
.animated-header {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 900px;
  min-height: 500px;
  overflow: hidden;
}

.header-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.animated-image {
  width: 110%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: panImage 30s ease-in-out infinite both;
}

@keyframes panImage {
  0%, 100% { transform: translateX(0) scale(1); }
  50% { transform: translateX(-5%) scale(1.02); }
}

.animated-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Sección de Peluches */
.plush-section {
  padding: 60px 0;
  background-color: var(--quarter-spanish-white);
}

.plush-section h2 {
  text-align: center;
  color: var(--russett);
  margin-bottom: 40px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}

.carousel-item img {
  border-radius: 10px;
  max-height: 400px;
  object-fit: cover;
  margin: 0 auto;
}

/* Sección de Testimonios */
.testimonials {
  background-color: var(--buff);
  padding: 60px 0;
}

.testimonials h2 {
  text-align: center;
  color: var(--russett);
  margin-bottom: 40px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  margin: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-top: 70px;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--russett);
}

.testimonial-author {
  font-weight: 700;
  color: var(--gamboge);
}

/* Sección de Métodos de Pago */
.payment-methods {
  background-color: var(--quarter-spanish-white);
  padding: 40px 0;
  margin: 40px 0;
}

.payment-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 25px;
  max-width: 600px;
  margin: 0 auto;
}

.payment-card h2 {
  color: var(--russett);
  text-align: center;
  margin-bottom: 25px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}

.payment-method {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.payment-icon {
  font-size: 30px;
  margin-right: 20px;
  color: var(--gamboge);
}

.clabe-container {
  position: relative;
  display: inline-block;
}

.copy-icon {
  cursor: pointer;
  margin-left: 8px;
  color: #666;
  transition: all 0.3s ease;
}

.copy-tooltip {
  position: absolute;
  background: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.copy-icon:hover .copy-tooltip {
  opacity: 1;
}

/* Blooming Bar Section */
.blooming-bar {
  background-color: var(--quarter-spanish-white);
  padding: 40px 0;
  text-align: center;
  margin: 30px 0;
  border-top: 1px;
  border-bottom: 1px;
}

.blooming-bar h2 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: var(--copper-rose);
  font-size: 2.2rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.flower-shelf {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.flower-item {
  position: relative;
  width: 160px;
  height: 210px;
  perspective: 1000px;
  transition: all 0.3s ease;
}

.flower-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(115, 91, 86, 0.2);
  transition: transform 0.5s ease;
  border: 2px solid var(--quarter-spanish-white);
}

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

.flower-item:hover .flower-image {
  transform: rotateY(10deg) scale(1.05);
  box-shadow: 0 8px 20px rgba(115, 91, 86, 0.3);
  border-color: var(--buff);
}

.flower-name {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--quarter-spanish-white);
  padding: 6px 18px;
  border-radius: 20px;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  color: var(--russett);
  font-size: 0.95rem;
  box-shadow: 0 2px 5px rgba(115, 91, 86, 0.1);
  border: 1px solid var(--dusty-gray);
  white-space: nowrap;
}

/* Video Section */
.video-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, var(--quarter-spanish-white), #ffffff);
  text-align: center;
  position: relative;
}

.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: linear-gradient(to right, var(--buff), var(--tacha), var(--anzac), var(--gamboge));
  opacity: 0.7;
}

.video-section h2 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: var(--copper-rose);
  font-size: 2.2rem;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(115, 91, 86, 0.2);
  border: 3px solid var(--quarter-spanish-white);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-description {
  max-width: 700px;
  margin: 25px auto 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--russett);
  line-height: 1.6;
  padding: 15px 20px;
  background-color: var(--quarter-spanish-white);
  border-radius: 8px;
  border-left: 4px solid var(--tacha);
  font-size: 1.05rem;
}

/* Botón de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

/* Media Queries */
@media (max-width: 1024px) {
  .animated-header {
    height: 80vh;
  }
  
  .animated-image {
    animation-duration: 25s;
  }
}

@media (max-width: 768px) {
  .animated-header {
    height: 70vh;
    min-height: 400px;
  }
  
  .animated-image {
    animation-duration: 20s;
  }

  .blooming-bar h2, 
  .video-section h2 {
    font-size: 1.8rem;
  }
  
  .flower-item {
    width: 140px;
    height: 180px;
  }
  
  .flower-name {
    font-size: 0.85rem;
    padding: 5px 15px;
  }
  
  .video-container {
    margin: 0 15px;
  }
  
  .testimonial-card {
    padding-top: 60px;
  }
  
  .testimonial-img {
    width: 70px;
    height: 70px;
    top: -35px;
  }
}

@media (max-width: 480px) {
  .animated-header {
    height: 60vh;
    min-height: 350px;
  }
  
  .animated-image {
    animation-duration: 15s;
  }

  .blooming-bar h2, 
  .video-section h2 {
    font-size: 1.5rem;
  }
  
  .flower-item {
    width: 120px;
    height: 160px;
  }
  
  .flower-name {
    font-size: 0.75rem;
    padding: 4px 12px;
  }
  
  .video-description {
    padding: 12px 15px;
    margin: 20px 15px 0;
    font-size: 0.95rem;
  }
  
  .testimonial-card {
    padding-top: 50px;
  }
  
  .testimonial-img {
    width: 60px;
    height: 60px;
    top: -30px;
  }
}

/* Grid Responsive */
.wk-desk-1 { width: 8.333333%; }
.wk-desk-2 { width: 16.666667%; }
.wk-desk-3 { width: 25%; }
.wk-desk-4 { width: 33.333333%; }
.wk-desk-5 { width: 41.666667%; }
.wk-desk-6 { width: 50%; }
.wk-desk-7 { width: 58.333333%; }
.wk-desk-8 { width: 66.666667%; }
.wk-desk-9 { width: 75%; }
.wk-desk-10 { width: 83.333333%; }
.wk-desk-11 { width: 91.666667%; }
.wk-desk-12 { width: 100%; }

@media (max-width: 1024px) {
  .wk-ipadp-1 { width: 8.333333%; }
  .wk-ipadp-2 { width: 16.666667%; }
  .wk-ipadp-3 { width: 25%; }
  .wk-ipadp-4 { width: 33.333333%; }
  .wk-ipadp-5 { width: 41.666667%; }
  .wk-ipadp-6 { width: 50%; }
  .wk-ipadp-7 { width: 58.333333%; }
  .wk-ipadp-8 { width: 66.666667%; }
  .wk-ipadp-9 { width: 75%; }
  .wk-ipadp-10 { width: 83.333333%; }
  .wk-ipadp-11 { width: 91.666667%; }
  .wk-ipadp-12 { width: 100%; }
}

@media (max-width: 768px) {
  .wk-tab-1 { width: 8.333333%; }
  .wk-tab-2 { width: 16.666667%; }
  .wk-tab-3 { width: 25%; }
  .wk-tab-4 { width: 33.333333%; }
  .wk-tab-5 { width: 41.666667%; }
  .wk-tab-6 { width: 50%; }
  .wk-tab-7 { width: 58.333333%; }
  .wk-tab-8 { width: 66.666667%; }
  .wk-tab-9 { width: 75%; }
  .wk-tab-10 { width: 83.333333%; }
  .wk-tab-11 { width: 91.666667%; }
  .wk-tab-12 { width: 100%; }
}

@media (max-width: 500px) {
  .wk-mobile-1 { width: 8.333333%; }
  .wk-mobile-2 { width: 16.666667%; }
  .wk-mobile-3 { width: 25%; }
  .wk-mobile-4 { width: 33.333333%; }
  .wk-mobile-5 { width: 41.666667%; }
  .wk-mobile-6 { width: 50%; }
  .wk-mobile-7 { width: 58.333333%; }
  .wk-mobile-8 { width: 66.666667%; }
  .wk-mobile-9 { width: 75%; }
  .wk-mobile-10 { width: 83.333333%; }
  .wk-mobile-11 { width: 91.666667%; }
  .wk-mobile-12 { width: 100%; }
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background-color: var(--quarter-spanish-white);
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px; /* Ajusta este valor según necesites */
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(115, 91, 86, 0.2);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cambia a 'contain' si prefieres ver el video completo sin recortes */
  object-position: center; /* Asegura que el contenido importante esté centrado */
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio - cambia a 75% para 4:3 */
  height: 0;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.video-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.main-video-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.main-video-container video {
  width: 100%;
  display: block;
}

.video-thumbnails {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.thumbnail {
  position: relative;
  width: 120px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.thumbnail:hover .thumbnail-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}

.thumbnail.active {
  border: 2px solid #ff6b6b;
}

.thumbnail.active .thumbnail-overlay {
  background-color: rgba(0, 0, 0, 0);
}

.video-description {
  text-align: center;
  margin-top: 20px;
  color: #555;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-thumbnails {
    gap: 10px;
  }
  
  .thumbnail {
    width: 100px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .thumbnail {
    width: 80px;
    height: 60px;
  }
}

/* CSS optimizado para resoluciones */
.main-video-container {
  max-width: 1920px;
  margin: 0 auto;
}

.main-video-container video {
  width: 100%;
  height: auto;
  max-height: 80vh;
}

.thumbnail video {
  width: 160px;
  height: 90px; /* Relación 16:9 */
  object-fit: cover;
}

@media (max-width: 768px) {
  .main-video-container video {
    max-height: 50vh;
  }
  
  .thumbnail video {
    width: 100px;
    height: 56px;
  }
}

