:root {
  --main-tph-color: white;
  --tph-verde: #1a3f2b;
  --tph-ocre: #897b2d;
  --tph-amarillo: #d4b945;
  --tph-gris: #e1dfce;
  --tph-negro: #1d1d1b;
  --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: 'alwynnewroundedregular';
  --tph-font-alwynnewroundedregular: 'alwynnewroundedregular';
  --tph-font-candarab: 'candarab';
  --tph-font-futuraptmedium: 'futuraptmedium';
  --tph-font-ponabold: 'ponabold';
  --tph-font-ponabolditalic: 'ponabolditalic';
  --tph-font-glecb: 'glecb';

  /************* 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: 'alwynnewroundedregular';
  src: url('../../../fonts/alwynnewrounded-regular.woff2') format('woff2'),
    url('../../../fonts/alwynnewrounded-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

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

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

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

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

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

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

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

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

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

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

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

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

.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-verde);
}

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

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

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

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

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

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

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

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

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

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

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

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

.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-rojo);
  color: var(--tph-amarillo);
  border-radius: 50px;
}

.btn-participa:hover {
  background-color: var(--tph-amarillo);
  color: var(--tph-rojo);
}

.btn-participa:focus {
  background-color: var(--tph-amarillo);
  color: var(--tph-rojo);
}

.btn-formulario {
  background-color: var(--tph-amarillo);
  color: var(--tph-azul-oscuro);
  font-family: var(--tph-font-ponabold);
  width: auto;
  font-size: 1rem;
  padding: 0.5rem 2.5rem;
}

.btn-formulario:hover {
  background-color: var(--tph-azul-oscuro);
  color: var(--tph-amarillo);
}

.btn-formulario:focus {
  background-color: var(--tph-azul-oscuro);
  color: rgb(255, 255, 255);
}

.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: 'Typold Regular';
}

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

#logo {
  max-width: 100px;
}

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

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

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

#mainMenu .container-fluid {
  background-color: #f3f3f4 !important;
  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  *******************************************************************************/

#inicio .importe {
  font-size: 5.5rem !important;
  color: var(--tph-amarillo);
  text-shadow: 0 4px 12px #000;
  line-height: 0.8;
}

#inicio .cada-dia {
  background: url('../../../img/template/grumete-25/franja.png') no-repeat center center;
  background-size: contain;
  border: none;
  width: 240px;
  height: 60px;
  display: inline-block;
  text-align: center;
  color: var(--tph-amarillo);
  text-decoration: none;
  font-size: 2.5rem;
}

#inicio p {
  font-size: 0.8rem;
}

.cta-faja {
  position: relative;
  display: inline-block;
}

.cta-faja::before,
.cta-faja::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--tph-verde);
}

/* Raya izquierda: pegada al borde */
.cta-faja::before {
  right: 100%;
}

/* Raya derecha: pegada al borde */
.cta-faja::after {
  left: 100%;
}



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

.participar-margin {
  margin-top: -140px;
}

/********************************************************************************** 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 p {
  font-size: 1rem !important;
}

.margin-top {
  margin-top: -5px;
}

.margin-bottom {
  margin-bottom: -5px;
}

#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-futuraptmedium);
}

/********************************************************************************** productos  *******************************************************************************/

.productos-section {
  background: #fff;
}

/* Descripción: ancho legible */
.productos-section .descripcion {
  max-width: 980px;
}

/* Decoración hojas laterales */
.productos-section .decor {
  position: absolute;
  top: 0;
  width: 360px;
  opacity: .18;
  pointer-events: none;
  user-select: none;
}

.productos-section .decor-left {
  left: -40px;
}

.productos-section .decor-right {
  right: -20px;
}

/* Suelo verde inferior (como en los mockups) */
.productos-section .floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: #133b2b;
  /* verde oscuro */
  z-index: 0;
}

/* Grid de productos: que “apoyen” en el suelo en desktop */
.productos-grid {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.prod-title {
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #395744;
  /* tono verde elegante para títulos */
  font-size: 1.05rem;
}

/* Imágenes de producto */
.product-img {
  max-height: 520px;
  /* controla altura en desktop */
  object-fit: contain;
}

.product-img--slim {
  max-height: 500px;
  /* la botella 1L es más estrecha */
}

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

.help-section {
  background: #e4e0d0;
  /* beige del mockup */
  border-top: 6px solid #133b2b;
  /* fino borde verde arriba */
}

/* Logo centrado y tamaño moderado */
.help-logo {
  max-height: 70px;
  width: auto;
}

.help-title {
  color: #8f7c60;
  /* marrón/beige del titular del mockup */
  letter-spacing: .5px;
}

/* Botellas: límite de altura para proporción elegante */
.help-bottle-1l {
  max-height: 430px;
  object-fit: contain;
}

.help-bottle-3l {
  max-height: 460px;
  object-fit: contain;
}

/* Bloque verde detrás de la garrafa derecha */
.help-green-block {
  position: absolute;
  right: 12%;
  top: 12%;
  width: 180px;
  height: 72%;
  background: #133b2b;
  z-index: 0;
}

/* Asegurar la garrafa por delante del bloque */
.help-bottle-3l {
  z-index: 1;
}

#contacto {
  width: 100%;
  /* background-color: var(--tph-dorado); */
  padding: 1rem;
}

#contacto h1 {
  font-size: 4rem;
}

#contacto h2 {
  font-size: 2rem;
}

.tel_promo a {
  text-decoration: none;
  color: var(--tph-blanco);
  font-size: 1.5rem;
  text-align: end;
}

.email_contacto a {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  text-align: start;
}

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

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

footer ul {
  list-style: none;
}

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

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

footer .small {
  color: var(--tph-blanco);
  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) {

  #inicio h1 {
    font-size: 2rem;
  }

  #inicio h2 {
    font-size: 1rem;
  }

  #inicio p {
    font-size: 0.8rem;
  }

  .cta-faja {
    font-size: 1rem;
    margin-bottom: 92px;
  }

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

  #contacto h1 {
    font-size: 5rem;
  }

  #contacto h2 {
    font-size: 2rem;
  }

}

@media (min-width: 1024px) {
  #inicio h1 {
    font-size: 2rem;
  }

  #inicio h2 {
    font-size: 1rem;
  }

  #inicio p {
    font-size: 0.8rem;
  }

  .cta-faja {
    font-size: 1rem;
    margin-bottom: 92px;
  }
}

@media (min-width: 1200px) {
  #inicio h1 {
    font-size: 3rem;
  }

  #inicio h2 {
    font-size: 2rem;
  }

  #inicio p {
    font-size: 1rem;
  }

  .cta-faja {
    font-size: 1.5rem;
    margin-top: 89px;
  }

}

@media (min-width: 1400px) {
  #inicio h1 {
    font-size: 4rem;
  }

  #inicio h2 {
    font-size: 3rem;
  }

  #inicio p {
    font-size: 1rem;
  }

  .cta-faja {
    font-size: 3rem;
    margin-top: 112px;
  }
}

@media (min-width: 1600px) {

  #inicio h1 {
    font-size: 4rem;
  }

  #inicio h2 {
    font-size: 3rem;
  }

  #inicio p {
    font-size: 1rem;
  }

  .cta-faja {
    font-size: 3rem;
    margin-top: 136px;
  }


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

}

@media(min-width:1800px) {

  .cta-faja {
    font-size: 3rem;
    margin-top: 168px;
  }

}