/*
Theme Name: Flores - Bootstrap 5 Lander The Ultimate Product Landing Pages HTML CSS Template
Theme URI: https://templatejungle.com/
Author: TemplatesJungle
Author URI: https://templatejungle.com/
Description: Flores - Bootstrap 5 Lander The Ultimate Product Landing Pages HTML CSS Template is specially designed shop packaged for Lander The Ultimate Product Landing Pages by TemplatesJungle.
Version: 1.1
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------
CSS STRUCTURE:

1. VARIABLES
2. GENERAL TYPOGRAPHY

--------------------------------------------------------------*/
body {
  --heading-font: "Poppins", Georgia, serif;
  --heading-font-weight: 400;
  --heading-color: #313131;
  --heading-line-height: 1.24;

  --swiper-theme-color: #8C907E;

  /* bootstrap */
  --bs-body-font-family: "Poppins", Georgia, serif;
  --bs-body-font-size: 16px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.9;
  --bs-body-color: #616161;
  --bs-body-color-rgb: 1.6, 1.6, 1.6;
  --bs-body-bg-rgb: 249, 245, 243;
  --bs-body-bg: #FFF;

  --bs-primary: #dcb42e;
  --bs-black: #111;
  --bs-white: #fff;
  --bs-light: #f8f8f8;
  --bs-dark: #313131;
  --bs-gray: #C5C5C5;
  --bs-dark-gray: #9D9D9D;
  --bs-gray-200: #d08080;  
  --bs-gray-300: #D7D7D7;    

  --bs-primary-rgb: 10, 116, 241;
  --bs-black-rgb: 17, 17, 17;
  --bs-white-rgb: 255, 255, 255;
  --bs-light-rgb: 249, 250, 252;
  --bs-dark-rgb: 33, 37, 41;

  --bs-link-color: #313131;
  --bs-link-color-rgb: 17, 17, 17;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #313131;
  --bs-link-hover-color-rgb: 178, 133, 110;
}

body {
  letter-spacing: 0.03rem;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
}

h1.light,
.h1,
h2.light,
.h2,
h3.light,
.h3,
h4.light,
.h4,
h5.light,
.h5,
h6.light,
.h6 {
  color: var(--bs-light);
}

h1,
h2,
h3 {
  margin: 25px 0;
}

h5,
h6 {
  letter-spacing: 1px;
}

/* Escala fluida: crece con el ancho de pantalla en vez de saltar de golpe.
   clamp(mínimo en celular, valor que escala, máximo en escritorio). */
h1,
.h1 {
  font-size: clamp(2.5rem, 10vw, 9.5rem);
}

h2,
.h2 {
  font-size: clamp(1.75rem, 5vw, 3.6rem);
}

h3,
.h3 {
  font-size: clamp(1.35rem, 3.5vw, 2.8rem);
}

h4,
.h4 {
  font-size: clamp(1.15rem, 2.5vw, 1.8rem);
}

h5,
.h5 {
  font-size: 1.4rem;
}

h6,
.h6 {
  font-size: 1rem;
}

a {
  text-decoration: none;
}

a:hover {
  color: var(--bs-primary);
}

input:focus {
  outline: none;
}

strong {
  font-weight: bold;
}

/* font weight */
.fw-medium {
  font-weight: 600;
}

@media (min-width: 1600px) {
.container, .container-lg {
    max-width: 1550px;
  }
.container-md {
    max-width: 1430px;
  }
.container {
    max-width: 1200px;
  }
}

/* btn */
.btn {
  --bs-btn-border-radius: 0;
}

.btn-group-lg>.btn, .btn-lg {
  padding: 1.2rem 3.5rem;
}

.btn-primary {
  --bs-btn-color: var(--bs-light);
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-light);
  --bs-btn-hover-bg: var(--bs-dark);
  --bs-btn-hover-border-color: var(--bs-dark);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--bs-light);
  --bs-btn-active-bg: var(--bs-dark);
  --bs-btn-active-border-color: var(--bs-dark);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--bs-light);
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn.btn-primary:hover {
  background: var(--bs-dark);
  border: 1px solid var(--bs-dark);
}

/* text white */
.text-white {
  --heading-color: var(--bs-light);
  --bs-breadcrumb-item-active-color: var(--bs-light);
  --bs-breadcrumb-divider-color: var(--bs-light);
  --bs-link-color-rgb: var(--bs-light-rgb);
  --bs-link-hover-color-rgb: var(--bs-light-rgb);
}

.text-white .nav-link {
  --bs-nav-link-color: var(--bs-light);
  --bs-nav-link-hover-color: var(--bs-light);
  --bs-nav-link-active-color: var(--bs-light);
  --bs-navbar-active-color: var(--bs-light);
}

.text-gray-200 {
  --heading-color: var(--bs-gray-200);
  --bs-link-color-rgb: var(--bs-gray-200);
  color: var(--bs-gray-200);
}

/* text-dark */
.text-dark a.nav-link {
  color: rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important;
}
/* base styles */
a {
  transition: all 0.3s ease-out;
}

/* margin — igual que los paddings: solo de 992px en adelante.
   .mt-lg-0/.mb-lg-0/.pt-lg-0/.pb-lg-0 se eliminaron: Bootstrap ya los define
   correctamente dentro de su breakpoint, y esta copia sin @media los aplicaba
   en móvil, anulando los márgenes de separación entre bloques. */
@media (min-width: 992px) {
  .my-lg-6 {
    margin-top: 4.5rem!important;
    margin-bottom: 4.5rem!important;
  }
  .my-lg-7 {
    margin-top: 6rem!important;
    margin-bottom: 6rem!important;
  }
  .my-lg-8 {
    margin-top: 8.5rem!important;
    margin-bottom: 8rem!important;
  }
  .my-lg-9 {
    margin-top: 10rem!important;
    margin-bottom: 10rem!important;
  }
  .my-lg-10 {
    margin-top: 12.5rem!important;
    margin-bottom: 12.5rem!important;
  }
}

/* padding x */
@media only screen and (min-width: 1200px) {  
  .px-lg-6 {
    padding-left: 4.5rem!important;
    padding-right: 4.5rem!important;
  }
  .px-lg-7 {
    padding-left: 6rem!important;
    padding-right: 6rem!important;
  }
  .px-lg-8 {
    padding-left: 8.5rem!important;
    padding-right: 8rem!important;
  }
  .px-lg-9 {
    padding-left: 10rem!important;
    padding-right: 10rem!important;
  }
  .px-lg-10 {
    padding-left: 12.5rem!important;
    padding-right: 12.5rem!important;
  }
}

/* padding y — en móvil el espaciado es compacto; a partir de 992px crece.
   Sin el @media, estos paddings de escritorio (96-136px) se aplicaban también
   en el celular y convertían cada sección en una caja alta y casi vacía. */
.py-lg-6,
.py-lg-7,
.py-lg-8,
.py-lg-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 4.5rem!important;
    padding-bottom: 4.5rem!important;
  }
  .py-lg-7 {
    padding-top: 6rem!important;
    padding-bottom: 6rem!important;
  }
  .py-lg-8 {
    padding-top: 8.5rem!important;
    padding-bottom: 8rem!important;
  }
  .py-lg-10 {
    padding-top: 12.5rem!important;
    padding-bottom: 12.5rem!important;
  }
}

/* - Display Header
------------------------------------------------------------- */ 
@media (min-width: 1200px) {
  .display-1 {
     font-size: calc(1.625rem + 3.7vw);
     line-height: 1.2;
  }
 }

/* - Svg Color
------------------------------------------------------------- */ 
.svg-primary {
  fill: var(--bs-primary);
  color: var(--bs-primary);
}
.svg-gray {
  fill: var(--bs-gray);
  color: var(--bs-gray);
}
.svg-gray:hover {
  fill: var(--bs-primary);
  color: var(--bs-primary);
}

/* - Header
------------------------------------------------------------- */ 
/* a.nav-link {
  transition: border-bottom 0.3s ease-out;
} */
/* .offcanvas-body .navbar-nav a.nav-link.active,
.offcanvas-body .navbar-nav a.nav-link:hover {
  color: var(--bs-primary) !important;
  border-bottom: 3px solid var(--bs-primary);
}
.offcanvas-body .navbar-nav a.nav-link.text-light.active,
.offcanvas-body .navbar-nav a.nav-link.text-light:hover {
  color: var(--bs-light) !important;
  border-bottom: 3px solid var(--bs-light);
} */

/* Fixed Header
------------------------------------------------------------- */ 
.site-header {
  transition: background-color 0.6s ease-out, border 0.6s ease-out;
}

@media (max-width: 1200px) {
  .navbar-nav .nav-link.active, .navbar-nav .nav-link.show,
  .offcanvas.offcanvas-end a {
    color: var(--bs-dark);
  }
  .navbar-nav .nav-item {
    border-bottom: 1px solid var(--bs-gray-200);
    text-align: left;
    width: 100%;
  }
  .navbar-nav .dropdown-menu {
    border: none;
  }
}

/* - Billboard ( Homepage3)
------------------------------------------------------------- */ 
/* .homepage-v3 .intro-content {
  top: 20%;
  right: 0;
  bottom: 0;
  left: 0;
  width: 80%;
}
.swiper-pagination span.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  transition: 0.2s ease-in-out;
}
.swiper-pagination span.swiper-pagination-bullet-active {
  outline: 2px solid var(--bs-primary);
  border: 3px solid var(--bs-white);
  background-color: var(--bs-primary);
}

/* - FAQs
------------------------------------------------------------- */
#faqs .accordion-button::after {
  background-size: 2.5rem;
  width: 2rem;
  height: 2rem; 
  transition: 0.3s ease-in-out;
}
#faqs .accordion-button.collapsed::after {
  content: "";
  background-repeat: no-repeat;
  background-size: 2.5rem;
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}
#faqs .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='minus' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");  
}

/* scroll spy — la alineación horizontal es solo para la barra de escritorio.
   Dentro del menú móvil (offcanvas) el eje es vertical, así que flex-end
   empujaba todos los enlaces al fondo del panel. */
@media (min-width: 992px) {
  .scrollspy-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.scrollspy-nav .scrollspy-link {
  transition: 0.3s ease;
  margin: 0px 10px;
  cursor: pointer;
}

.scrollspy-nav .scrollspy-link:hover {
  color: #fff;
}

/* La barrita indicadora solo tiene sentido bajo la barra horizontal;
   en el menú móvil quedaba suelta al pie del panel. */
.scrollspy-nav .scrollspy-indicator {
  display: none;
}

@media (min-width: 992px) {
  .scrollspy-nav .scrollspy-indicator {
    display: block;
    position: absolute;
    height: 3px;
    width: 0;
    background: var(--bs-primary);
    bottom: 0;
    left: 0;
    transition: width 0.3s, left 0.1s;
  }
}

 @font-face {
            font-family: 'Big Jelly';
            src: url('fonts/Big Jelly.otf') format('opentype');
        }

@font-face {
            font-family: 'Adriana';
            src: url('fonts/Adriana.ttf') format('truetype');
        }

  .logoNombre {
    font-family: 'Big Jelly', sans-serif;
    color: rgb(177, 82, 78);
  }

  .logoLetra {
    font-family: 'Big Jelly', sans-serif;
    color: rgb(255, 255, 255);
  }

  .logoLetra_Negro {
    font-family: 'Big Jelly', sans-serif;
    color: #213926;
    font-size: 22px;
  }

  .letraPequena {
    font-family: 'Adrianna', sans-serif;
    font-size: 0.8rem;
  }

/* Los archivos son casi cuadrados (343x300). Forzarlos a 300x100 con "cover"
   recortaba dos tercios del dibujo; "contain" muestra el icono completo. */
.icon-image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
}

.calculator-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .form-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            flex: 1 1 0;
            min-width: 0;
        }

        label {
            margin-bottom: 8px;
            color: #333;
        }

        input[type="number"],
        input[type="text"],
        select {
            width: 100%;
            height: 48px;
            padding: 8px 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 16px;
        }

        .button-container {
            display: flex;
            justify-content: center;
        }

        button {
            background-color: #e68a00;
            color: white;
            padding: 10px 30px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }

        button:hover {
            background-color: #cc7a00;
        }

        #resultado {
            text-align: center;
            margin-top: 20px;
        }

        /* Responsive design */
        @media (max-width: 600px) {
            .form-row {
                flex-direction: column;
                align-items: center;
            }

            .form-group {
                width: 100%;
                max-width: 300px;
                flex: 1 1 auto;
            }
        }

.btn-calculadora {
  background: var(--bs-gray-200) !important;
  color: #fff !important;
  border: none !important;
}
.btn-calculadora:hover {
  background: #b96a6a !important;
  color: #fff !important;
}

.barra-deslizante-container {
  /* 100vw incluye el ancho de la barra de scroll y provocaba desplazamiento
     horizontal; 100% se ajusta al ancho real disponible. */
  width: 100%;
  overflow: hidden;
  background: #b96a6a;
  padding: 0.5rem 0;
  position: relative;
  z-index: 2;
}
.barra-deslizante {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  font-family: 'Poppins', 'Big Jelly', Arial, sans-serif;
  font-size: clamp(1.1rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  will-change: transform;
  animation: deslizar-cinta 40s linear infinite;
}
/* Cada grupo es una copia idéntica; no deben encogerse ni el bucle se descuadra. */
.barra-grupo {
  flex: 0 0 auto;
}
.barra-deslizante-container:hover .barra-deslizante {
  animation-play-state: paused;
}
@keyframes deslizar-cinta {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .barra-deslizante {
    animation: none;
  }
}

/* Estilos para la sección "Por qué bilu" */
.content-wrapper {
  padding-left: 2rem;
}

.endorsement-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: rgba(249, 245, 243, 0.5);
  border-radius: 1rem;
}

/* Responsive para la sección "Por qué bilu" */
@media (max-width: 991.98px) {
  .content-wrapper {
    padding-left: 0;
    text-align: center;
  }
  
  .endorsement-section {
    margin-top: 1.5rem;
  }
}

/* Tamaño del logo en la cabecera */
.logo {
  height: 56px;
  width: auto;
}

/* Reducir solo en móvil */
@media (max-width: 576px) {
  .logo {
    height: 52px;
  }
}

/* ===== Carrusel de testimonios (efecto coverflow 3D) ===== */
.carrusel-testimonios {
  padding: 40px 0 60px;
  overflow: hidden;
}

/* Las capturas tienen proporciones muy dispares (desde 5:1 hasta casi 1:1).
   Por eso la tarjeta manda: mismo tamaño para todas, y cada captura se
   contiene dentro, completa y centrada. Antes el alto fijo hacía que una
   captura ancha se encogiera hasta quedar como una franja diminuta. */
.carrusel-testimonios .swiper-slide {
  width: min(88vw, 480px);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  opacity: 0.6;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.carrusel-testimonios .swiper-slide-active {
  opacity: 1;
}

.carrusel-testimonios .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
  display: block;
  user-select: none;
}

/* Botones circulares: las flechas sueltas se perdían sobre las capturas claras. */
.carrusel-testimonios .swiper-button-next,
.carrusel-testimonios .swiper-button-prev {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #b96a6a;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}

.carrusel-testimonios .swiper-button-next:hover,
.carrusel-testimonios .swiper-button-prev:hover {
  background: #a05555;
  transform: scale(1.08);
}

.carrusel-testimonios .swiper-button-next::after,
.carrusel-testimonios .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 700;
}

.carrusel-testimonios .swiper-pagination-bullet-active {
  background: #b96a6a;
}

@media (max-width: 575px) {
  .carrusel-testimonios .swiper-slide {
    height: 320px;
    padding: 8px;
  }

  /* A 56px las flechas tapaban la tarjeta en pantallas chicas. */
  .carrusel-testimonios .swiper-button-next,
  .carrusel-testimonios .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .carrusel-testimonios .swiper-button-next::after,
  .carrusel-testimonios .swiper-button-prev::after {
    font-size: 15px;
  }
}

/* ===== Tarjetas de contacto ===== */
/* Sin height:100% cada tarjeta tomaba la altura de su texto: la del correo
   (más largo) quedaba más alta que las otras dos y la fila se veía despareja. */
.icon-box {
  height: 100%;
}

/* El correo es una palabra larga sin espacios; sin esto ensancha la tarjeta. */
.icon-box-content {
  overflow-wrap: anywhere;
}

@media (max-width: 991.98px) {
  /* p-5 (48px) más el icono de 80px dejaban muy poco espacio al texto. */
  .icon-box.p-5 {
    padding: 1.5rem !important;
  }
}

/* ===== Aval "pet society" ===== */
/* El logo trae fondo blanco propio y el bloque tiene fondo crema, así que se
   recortaba un rectángulo blanco a su alrededor. multiply funde el blanco con
   el fondo sin tocar el archivo. */
.endorsement-section img {
  mix-blend-mode: multiply;
  max-width: 100%;
  height: auto;
}

/* ===== Corte: texto sobre onda infinita ===== */
.onda-container {
  width: 100%;
  overflow: hidden;
  line-height: 0; /* evita el hueco que el inline-block del svg deja abajo */
  margin-bottom: 2cm; /* separación del bloque de Testimonios */
}

/* En celular 2cm es casi un tercio de pantalla; el hueco se sentía vacío. */
@media (max-width: 767.98px) {
  .onda-container {
    margin-bottom: 1cm;
  }
}

.onda-svg {
  display: block;
  width: 100%;
  height: 150px;
}

.onda-texto {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  fill: #b96a6a;
}

@media (max-width: 991.98px) {
  .onda-svg {
    height: 130px;
  }
  .onda-texto {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .onda-svg {
    height: 115px;
  }
  .onda-texto {
    font-size: 17px;
  }
}
