:root {
  --main-tph-color: white;
  --tph-verde: #57702F;
  --tph-amarillo: #ffd706;
  --tph-naranja: #ea9819;
  --tph-negro: #1d1d1b;
  --tph-gris: #e2ddd8;
  --tph-blanco: white;
  --tph-cuenta-atras: #e8871b;
  --tph-form-label: #fff;
  --tph-form-placeholder: white;
  --tph-form-input: black;
  --tph-form-bg: #fff;
  --tph-font-body: 'jostregular';
  --tph-font-jostregular: 'jostregular';
  --tph-font-baskerville: 'baskerville';
  --tph-font-jostnold: 'jostnold';
  --tph-font-jostsemibold: 'jostsemibold';
  --tph-font-poppinsbold: 'poppinsbold';
  --tph-font-poppinsregular: 'poppinsregular';

  /************* VARIABLES DE COLOR *************/
  /* Fondo del contenedor del carrusel */
  --tph-carousel-bg-color: #EEE;
  /* Fondo de las celdas (si no hay imagen) */
  --tph-carousel-cell-bg-color: #8C8;
  /* Color del texto descriptivo */
  --tph-carousel-text-color: #666;
  /* Color del título del servicio */
  --tph-carousel-title-color: #000;
  /* Color de la línea horizontal */
  --tph-carousel-hr-color: #CCC;

  /************* VARIABLES DE TAMAÑO *************/
  /* Ancho de las celdas del carrusel */
  --tph-carousel-cell-width: 600px;
  /* Altura de las celdas del carrusel */
  --tph-carousel-cell-height: 443px;
  /* Margen derecho de las celdas */
  --tph-carousel-cell-margin-right: 10px;
  /* Bordes redondeados de las celdas */
  --tph-carousel-border-radius: 5px;

  /************* VARIABLES DE TIPOGRAFÍA *************/
  /* Familia de fuente */
  --tph-carousel-font-family: sans-serif;
  /* Tamaño del título del servicio */
  --tph-carousel-title-font-size: 18px;
  /* Tamaño de la fuente de la descripción */
  --tph-carousel-description-font-size: 14px;
  /* Espacio arriba de la descripción */
  --tph-carousel-description-margin-top: 10px;
  /* Margen arriba y abajo de la línea horizontal */
  --tph-carousel-hr-margin: 5px 0;

}

/********************************************************************* fuentes *********************************************************/

@font-face {
  font-family: 'baskerville';
  src: url('../../../fonts/Baskerville.woff2') format('woff2'),
    url('../../../fonts/Baskerville.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'jostnold';
  src: url('../../../fonts/jost-nold.woff2') format('woff2'),
    url('../../../fonts/jost-nold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'jostregular';
  src: url('../../../fonts/jost-regular.woff2') format('woff2'),
    url('../../../fonts/jost-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'jostsemibold';
  src: url('../../../fonts/jost-semibold.woff2') format('woff2'),
    url('../../../fonts/jost-semibold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'poppinsbold';
  src: url('../../../fonts/poppins-bold.woff2') format('woff2'),
    url('../../../fonts/poppins-bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'poppinsregular';
  src: url('../../../fonts/poppins-regular.woff2') format('woff2'),
    url('../../../fonts/poppins-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.font-body {
  font-family: var(--tph-font-body);
}

.font-jostregular {
  font-family: var(--tph-font-jostregular);
}

.font-baskerville {
  font-family: var(--tph-font-baskerville);
}

.font-jostnold {
  font-family: var(--tph-font-jostnold);
}

.font-jostsemibold {
  font-family: var(--tph-font-jostsemibold);
}

.font-poppinsbold {
  font-family: var(--tph-font-poppinsbold);
}

.font-poppinsregular {
  font-family: var(--tph-font-poppinsregular);
}

.font-arial {
  font-family: Arial, Helvetica, sans-serif;
}

.font-georgia {
  font-family: 'georgia';
}

.font-georgia-i {
  font-family: 'georgiai';
}

.font-typold {
  font-family: 'Typold Regular';
}

.font-typold {
  font-family: 'Typold Regular';
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--tph-font-body);
  color: var(--tph-negro);
  background-color: var(--main-tph-color);
}

img,
iframe {
  max-width: 100%;
}

.bg-promo {
  background-color: var(--tph-gris);
}

.bg-menu {
  background-color: var(--tph-gris);
}

.bg-verde {
  background-color: var(--tph-verde);
}

.bg-amarillo {
  background-color: var(--tph-amarillo);
}

.bg-naranja {
  background-color: var(--tph-naranja);
}

.bg-negro {
  background-color: var(--tph-negro);
}

.bg-gris {
  background-color: var(--tph-gris);
}

.bg-blanco {
  background-color: var(--tph-blanco);
}

.color-verde {
  color: var(--tph-verde);
}

.color-amarillo {
  color: var(--tph-amarillo);
}

.color-naranja {
  color: var(--tph-naranja);
}

.color-gris {
  color: var(--tph-gris);
}

.color-negro {
  color: var(--tph-negro) !important;
}

.color-blanco {
  color: var(--tph-blanco);
}

.cursor-blocked {
  cursor: not-allowed;
}

.cursor-pointer {
  cursor: pointer;
}

.alert-error {
  margin-bottom: .5rem;
}

.cookies {
  z-index: 99999;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/********************************************************************* Botones *********************************************************/

.btn-participa {
  background-color: var(--tph-verde);
  color: var(--tph-blanco);
  border-radius: 50px;
}

.btn-participa:hover {
  background-color: var(--tph-blanco);
  color: var(--tph-verde);
}

.btn-participa:focus {
  background-color: var(--tph-blanco);
  color: var(--tph-verde);
}

.btn-formulario {
  background-color: var(--tph-naranja);
  color: var(--tph-blanco);
  font-family: var(--tph-font-jostsemibold);
  width: 300px;
  font-size: 2rem;
  border-radius: 0;
}

.btn-formulario:hover {
  background-color: var(--tph-blanco);
  color: var(--tph-naranja);
}

.btn-formulario:focus {
  background-color: var(--tphblanco);
  color: var(--tph-naranja);
}

.btn-descubrelo {
  background-color: var(--tph-naranja);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  border-radius: 0;
  padding: 1rem 3rem;
  border: none;
}

.btn-descubrelo:hover {
  background-color: #fff;
  color: var(--tph-naranja);
  border: 2px solid var(--tph-naranja);
}

.btn-descubrelo:focus {
  outline: none;
  box-shadow: none;
}


.btn-promo {
  background-color: rgb(0, 0, 0);
  color: #fff;
}

.btn-promo:hover {
  background-color: rgb(255, 255, 255);
  color: white;
}

.btn-promo:focus {
  background-color: rgb(255, 255, 255);
  color: white;
}

.btn-round-negativo {
  border-radius: 1.3rem !important;
  background-color: rgb(255, 255, 255);
  color: white;
}

.gradiente-texto {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to right, #00B09F, #004862);
}

/* Estilo para los inputs de texto dentro del formulario #formCod */
#formCod #codigo_1,
#formCod #codigo_2 {
  font-family: 'futuraptmedium';
  background-color: var(--tph-rosa);
  color: var(--tph-amarillo);
  border: 2px solid var(--tph-amarillo);
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  max-width: 50%;
  margin: 0 auto;
}

/* Estilo para los placeholders en los inputs de texto dentro del formulario #formCod */
#formCod #codigo_1::placeholder,
#formCod #codigo_2::placeholder {
  color: var(--tph-amarillo);
  opacity: 1;
  font-weight: bold;
}

/* Estilo para el botón principal dentro del formulario #formCod */
#formCod #btnCod {
  font-family: 'futuraptmedium';
  background-color: var(--tph-amarillo);
  color: var(--tph-rosa);
  border: 2px solid var(--tph-rosa);
  border-radius: 50px !important;
  font-weight: bold;
  max-width: 50%;
  margin: 0 auto;
  padding: 12px;
}

/* Estilo para el botón de espera dentro del formulario #formCod */
#formCod #btnWait {
  font-family: 'futuraptmedium';
  background-color: var(--tph-amarillo);
  color: var(--tph-rosa);
  border: 2px solid var(--tph-rosa);
  border-radius: 50px !important;
  max-width: 50%;
  margin: 0 auto;
  padding: 12px;
}

/* Ajustes de tamaño y espaciado para inputs y botones en #formCod */
#formCod input.form-control,
#formCod button.btn {
  padding: 10px;
  font-size: 1rem;
}



/********************************************************************* scrollbar css *********************************************************/
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--tph-dorado);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: black;
}

.alert {
  font-family: 'poppinsregular' !important;
}

/********************************************************************************** MENU  *******************************************************************************/

#logo {
  max-width: 100px;
}

.navbar-brand {
  max-width: 210px;
}

#accesoMicuenta {
  z-index: 99999;
  font-family: 'Typold Regular';
}

#mainMenu {
  font-family: 'poppinsbold';
  text-transform: uppercase;
  font-weight: bold;
  padding-top: 0%;
  padding-bottom: 0%;
  position: relative;
}

#mainMenu .container-fluid {
  background-color: var(--tph-gris);
  min-height: 4rem;
  color: var(--tph-negro) !important;
  z-index: 1;
}

#mainMenu .nav-link {
  color: var(--tph-negro);
}

/* .navbar-dark .navbar-nav .nav-link {
  color: var(--tph-naranja);
}

.navbar-dark .navbar-brand {
  color: var(--tph-naranja);
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show>.nav-link {
  color: var(--tph-naranja) !important;
} */

.fixed-top {
  position: fixed !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23cccccc' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/********************************************************************************** INICIO  *******************************************************************************/

/* ========== HERO CAROUSEL (MÓVIL FIRST) ========== */

/* Quita el padding lateral del container SOLO en móvil */
.hero-carousel>.container {
  padding-left: 0;
  padding-right: 0;
}

/* Fondo transparente en todos los casos */
.hero-overlay-alt,
.promo-left {
  background: transparent !important;
}

/* Overlay móvil: pegado ABAJO y centrado */
.hero-overlay-alt {
  position: absolute;
  inset: 0;
  z-index: 3;
  isolation: isolate;
  pointer-events: none;

  display: flex;
  /* centrado con flex */
  align-items: flex-end;
  /* arranca desde abajo */
  justify-content: center;
  /* centrado horizontal */
  padding: 0;
  /* sin espacio inferior */
}

/* Contenedor: columna, sin hueco entre ribbon y panel */
.promo-left {
  position: relative;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  overflow: visible;
  pointer-events: none;
  /* solo el panel será clicable */
}

/* Ribbon móvil centrada */
.promo-ribbon {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  width: min(92vw, 420px);
  max-width: 420px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  margin-bottom: 0;
  /* flush con el panel */
}

/* Panel amarillo móvil:
   - más estrecho que la ribbon
   - más alto
   - subido para que la ribbon quede "dentro"
   - padding-top reserva hueco para la ribbon */
.promo-panel {
  background: var(--tph-amarillo);
  width: min(60vw, 360px);
  /* más estrecho */
  min-height: 253px;
  /* más alto */
  margin-top: -184px;
  /* sube el panel bajo la ribbon */
  padding-top: 111px;
  /* hueco interno para la ribbon */
  padding-right: 14px;
  padding-bottom: 20px;
  padding-left: 14px;
  box-shadow: 12px 0 28px rgba(0, 0, 0, .18);
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: auto;
  z-index: 1;
  /* debajo de la ribbon */
}

/* Botón (móvil) */
.btn-participar {
  background: var(--tph-naranja);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  padding: .6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: .2s ease;
}

.btn-participar:hover {
  background: var(--tph-verde);
  color: #fff;
}

/* Hero base */
.hero-carousel {
  min-height: 520px;
}

/* Imagen del slide (móvil) */
.hero-carousel picture,
.hero-carousel picture>img,
.hero-carousel .carousel-item>img {
  display: block;
  width: 100%;
  height: 72vh;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

/* Altura del item en móvil */
.hero-carousel .carousel-item {
  position: relative;
  min-height: 72vh;
}

/* Indicadores en móvil */
.hero-carousel .carousel-indicators {
  bottom: 10px;
}

/* ========== TABLET / DESKTOP (992px) ========== */
@media (min-width: 992px) {

  .hero-carousel>.container {
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
  }

  /* Overlay vuelve al comportamiento de escritorio */
  .hero-overlay-alt {
    display: block;
  }

  /* Columna estrecha a la izquierda y centrada verticalmente */
  .promo-left {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: clamp(120px, 25vw, 300px);
    margin-left: clamp(180px, 6vw, 100px);
    display: flex;
    justify-content: center;
  }

  /* Ribbon centrada en viewport y bajada hacia mitad del slide */
  .promo-ribbon {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 40%);
    width: clamp(260px, 30vw, 380px);
  }

  /* Panel alto y estrecho apoyado abajo; reseteamos ajustes móviles */
  .promo-panel {
    width: 80%;
    height: 100%;
    min-height: 0;
    margin-top: 0;
    /* reset móvil */
    padding: 0;
    /* reset móvil */
    padding-bottom: clamp(14px, 2vw, 24px);
    border-radius: 0;
  }

  /* Botón (desktop) */
  .btn-participar {
    padding: .65rem 2rem;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  /* Imagen del slide (desktop) */
  .hero-carousel .carousel-item>img,
  .hero-carousel picture>img {
    height: 100%;
    max-height: 760px;
    object-position: center;
  }

  /* Indicadores estándar */
  .hero-carousel .carousel-indicators {
    bottom: 1.25rem;
  }
}

@media (min-width: 1400px) {
  .btn-participar {
    margin-bottom: 100px;
  }
}



/********************************************************************************** mecánica  *******************************************************************************/

.mecanica-title {
  color: var(--tph-verde);
  font-weight: 800;
  letter-spacing: .5px;
  font-family: 'jostsemibold';
}

/* Imagen producto */
.product-img {
  max-width: 90%;
  /* ocupa casi todo el ancho */
  margin: 0 auto;
  /* centrado */
  display: block;
}

/* Badge NOVEDAD adaptable */
.mecanica-badge {
  width: 25%;
  max-width: 220px;
  min-width: 100px;
  height: auto;
  transform: translate(-10px, -10px);
}

/* Paso */
.step-icon {
  width: 86px;
  aspect-ratio: 1/1;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 991.98px) {
  .mecanica-badge {
    display: none;
  }

  .mecanica-title {
    text-align: center;
  }
}

/********************************************************************************** countdown  *******************************************************************************/

#countdown {
  font-family: var(--tph-font-special);
  font-size: 2rem;
}

#countdown .wrapper {
  text-align: center;
}

#countdown .time {
  color: var(--tph-amarillo);
  font-size: 3rem;
  padding: 0.25rem;
}

#countdown .label {
  font-size: 1.8rem;
  display: block;
  color: var(--tph-amarillo);
}

#countdown svg {
  font: bold 5rem;
  width: 100%;
  height: 120px;
}

#countdown text {
  fill: none;
  stroke: var(--tph-amarillo);
  stroke-width: 6px;
  stroke-linejoin: round;
  animation: 2s pulsate infinite;
}

@keyframes pulsate {
  50% {
    text-shadow: 4px 4px #fff;
  }
}

/********************************************************************************** participa  *******************************************************************************/

#participa .input-group-text {
  display: none;
}

form#formReg_l label {
  display: block;
  color: var(--tph-form-label);
}

form#formReg_l input {
  border-radius: 5rem;
  border-color: white;
}

form#formReg_l .form-control {
  color: var(--tph-form-input);
  background-color: var(--tph-form-bg);
  font-size: 1rem;
  font-family: var(--font-textos);
}

form#formReg_l .form-select {
  border-color: white;
  background-color: var(--tph-form-bg);
  font-family: var(--font-textos);
  border-radius: 5rem;
  color: black;
}

form#formReg_l label.custom-control-label {
  display: block !important;
  color: var(--tph-form-label);
  font-size: 1rem;
}

form#formReg_l .form-control::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--tph-form-placeholder);
  opacity: 1;
  /* Firefox */
}

form#formReg_l .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--tph-form-placeholder);
}

form#formReg_l .form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--tph-form-placeholder);
}

form#formReg_l .form-select::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--tph-form-placeholder);
  opacity: 1;
  /* Firefox */
}

form#formReg_l .form-select:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--tph-form-placeholder);
}

form#formReg_l .form-select::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--tph-form-placeholder);
}

form#formReg_l a {
  color: var(--tph-form-label);
}

form option {
  color: #000000;
  font-size: 1rem;
}

form option:hover {
  background-color: #ffffff;
}

form .input-group-text {
  background: transparent;
  color: #fff;
  border: none;
}

form .form-check-input:checked {
  background-color: var(--tph-amarillo);
  border-color: var(--tph-amarillo);
}

.form-check-input {
  --bs-form-check-bg: var(--tph-rosa);
}

.form-label {
  font-family: var(--tph-font-poppinsregular);
}

/********************************************************************************** productos  *******************************************************************************/
/* Titular según la creatividad (naranja, itálica y aire entre líneas) */
.alt-title {
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: .3px;
}

.alt-title em {
  font-style: italic;
}

/* Limitar ancho de la copia para una lectura cómoda */
#alt-vegetal .copy-wrap {
  max-width: 560px;
}

/* Imagen del producto grande pero contenida */
.product-hero {
  max-width: 520px;
  /* tamaño máximo en desktop */
  width: 100%;
  height: auto;
}

/* Ajustes responsive */
@media (max-width: 991.98px) {
  .alt-title {
    text-align: center;
  }

  #alt-vegetal .copy-wrap {
    text-align: center;
  }
}

/********************************************************************************** contacto  *******************************************************************************/

/* Fondo arena suave como en la pieza */
.help-section {
  background: #e7e2dc;
}

/* Logo */
.help-brand {
  max-width: 360px;
  width: 100%;
  height: auto;
}

/* Titular verde y tamaño fluido */
.help-title {
  color: var(--tph-verde);
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  letter-spacing: .5px;
}

/* Teléfono grande, responsive */
.help-phone {
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  line-height: 1.1;
}

/* Email ligeramente destacado pero sin ser tan grande como el teléfono */
.help-mail {
  font-size: clamp(1rem, 2vw, 1.125rem);
}

@media (max-width: 767.98px) {
  .help-brand {
    max-width: 280px;
    margin-inline: auto;
  }
}

/********************************************************************************** footer  *******************************************************************************/

footer {
  background-color: var(--tph-blanco);
  position: sticky;
  font-family: 'Typold Regular';
}

footer ul {
  list-style: none;
}

footer a {
  color: var(--tph-negro);
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.3s color;
}

footer a:hover {
  color: var(--tph-negro);
}

footer .small {
  color: var(--tph-negro);
  font-size: 1.1rem;
}

footer img .small {
  max-width: 1.5rem;
}

.logoBonduellPie {
  max-width: 8rem;
}

.pull-right {
  float: right;
}

.xs-d-flex {
  flex-direction: column;
}

/********************************************************************************** Area personal  *******************************************************************************/
.card-width {
  min-width: 10rem;
}

.flex-adapt {
  flex-direction: column !important;
}

/********************************************************************************** textos  *******************************************************************************/

/********************************************************************************** media query  *******************************************************************************/

@media (min-width: 536px) {}

@media (min-width: 636px) {}

@media (min-width: 768px) {}

@media (min-width: 992px) {}

@media (min-width: 1024px) {}

@media (min-width: 1200px) {}

@media (min-width: 1400px) {}

@media (min-width: 1600px) {



  #mainMenu,
  section,
  header,
  footer {
    max-width: 1920px;
    margin: 0 auto;
  }

}

@media(min-width:1800px) {}