@media (max-width: 600px) {
  .carousel-small .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
  }
}
.carousel-small .carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.7;
  border: none;
  margin: 0 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.carousel-small .carousel-indicators .active {
  background-color: #ffd600;
  opacity: 1;
}
/* Separar flechas del carrusel */
.carousel-small .arrowL,
.carousel-small .arrowR {
  margin: 0 16px;
}
/* Carrusel pequeño para participantes */
.carousel-small {
  max-width: 900px;
  width: 100%;
}
/* Flechas del carrusel rellenas de amarillo */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #ffd600;
  border-radius: 50%;
  padding: 10px;
  /* Opcional: sombra */
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
:root {
  /* Colores principales */
  --tph-azul-marino: #1a4285;
  --tph-oscuro: #232627;
  --tph-negro: #000000;
  --tph-blanco: #ffffff;
  --tph-gris: #dddddd;

  /* Colores Botones */
  --tph-rojo: #dd0e12;
  --tph-rojoRakuten:#e20610;

  /* Textos */
  --tph-kiwi: #94815d;
  --tph-marron: #46351e;
  --tph-crema: #fff7de; 


  /* Tipografías */
  --tph-font-arial: 'arial_black', sans-serif;
  --tph-font-VartadinBold: 'Vartadin Bold', sans-serif;
  --tph-font-VartadinRegular: 'Vartadin Regular', sans-serif;

  /* Alias de compatibilidad (variables heredadas del template base) */
  --tph-verde: var(--tph-azul-marino);
  --tph-naranja: var(--tph-rojo);
  --tph-azul: var(--tph-azul-marino);
  --tph-azul-medio: var(--tph-azul-marino);
  --main-tph-color: var(--tph-blanco);
  --tph-font-body: var(--tph-font-VartadinRegular);
  --tph-font-display: var(--tph-font-VartadinBold);
  --tph-font-thin: var(--tph-font-VartadinRegular);
  --tph-font-gothic: var(--tph-font-arial);
  --tph-form-label: var(--tph-azul-marino);

  /************* 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;
}

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

@font-face {
  font-family: 'arial_black';
  src: url('../../../fonts/arial_black.ttf') format('typeface');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vartadin Bold';
  src: url('../../../fonts/vartadin-bold-0.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Vartadin Regular';
  src: url('../../../fonts/vartadin-regular-0.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/********************************************************************* estilos globales *********************************************************/

html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--tph-font-body);
  color: var(--tph-negro);
  background-color: var(--main-tph-color);
  /*background-image: url('../../../img/template/burgo-experiencias-26/cabecera-movil-fondo.jpg');*/
}

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


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

.cursor-pointer {
  cursor: pointer;
}

.cookies {
  z-index: 99999;
}

.color-azul-marino{
  color:var(--tph-azul-marino); 
}

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

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

.background-azul{
  background-color: var(--tph-azul-marino);
}
/********************************************************************* Botones *********************************************************/

.btn-formulario {
  background-color: var(--tph-rojo);
  color: var(--tph-blanco);
  font-family: var(--tph-font-VartadinBold);
  font-weight: 600;
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 66, 133, 0.3);
  font-size: 2.6vw;
  padding: 1vh 27.5vw;  
  cursor: pointer;
}

/* Anula hover/focus de Bootstrap (.btn:hover) para este botón */
button.btn.btn-formulario:hover,
button.btn.btn-formulario:focus,
button.btn.btn-formulario:focus-visible,
button.btn.btn-formulario:active,
.btn-formulario:hover,
.btn-formulario:focus,
.btn-formulario:focus-visible,
.btn-formulario:active {
  background-color: var(--tph-negro) !important;
  color: var(--tph-blanco) !important;
  border-color: transparent !important;
  box-shadow: 0 4px 15px rgba(26, 66, 133, 0.3) !important;
  transform: none !important;
}



/*.btn-formulario:hover {
  background-color: var(--tph-verde);
  color: var(--tph-blanco);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 66, 133, 0.4);
}*/

.btn-formulario:active {
  transform: translateY(0);
}

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







/********************************************************************* 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: var(--tph-font-body);
}

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

.navbar-brand {
  max-width: 180px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img.logo {
  max-width: 160px;
  max-height: 44px;
  width: auto;
  flex: 0 0 auto;
}

#mainMenu,
#containerMenu,
#mainMenu .navbar-brand,
#mainMenu .container {
  overflow: visible;
}

#mainMenu .navbar-brand img.logo {

  position: relative;
  top: 16px;
  z-index: 1;
}
.logoVarta{ 
    position: absolute;
    width: 12%;
    top: 30%;
    left: 0%;
}


@media (max-width: 991px) {
  /* Nav más compacto en móvil */
  #mainMenu {
    padding: 0.25rem 0;
  }

  #mainMenu .navbar-toggler {
    padding: 0.25rem;
  }

  #mainMenu .navbar-toggler-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .navbar-brand {
    max-width: none;
  }

  .navbar-brand img.logo {
    max-width: 120px;
		max-height: 40px;
  }

  #mainMenu .navbar-brand img.logo {
    top: 10px;
  }

  /* Alinea los dos logos en móvil (evita absolute) */
  #mainMenu .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    height: 32px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: visible;
  }

  #mainMenu .navbar-brand {
    position: static;
    width: auto;
    height: 60px;
    max-height: 60px;
    object-fit: contain;
    display: block;
    margin: 0;
    margin-left: 10%;
  }

  #mainMenu .navbar-brand{
    position: static;
    width: auto;
    height: 40px;
    max-height: 40px;
    object-fit: contain;
    display: block;
    margin: 0;
    margin-left: 13%;
  }
}

#accesoMicuenta {
  z-index: 99999;
  font-family: var(--tph-font-VartadinRegular);
}

/* Estilos personalizados para el modal del área personal */
.modal-area-personal {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-area-personal .modal-header {
  background: var(--tph-azul-marino);
  padding: 1rem;
  position: relative;
}

.modal-area-personal .btn-close-custom {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  opacity: 1;
  width: 35px;
  height: 35px;
  padding: 0;
  transition: all 0.3s ease;
}

.modal-area-personal .btn-close-custom:hover {
  background-color: white;
  transform: rotate(90deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: var(--tph-azul-marino);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(26, 66, 133, 0.3);
  animation: pulse-icon 2s infinite;
}

.modal-icon-wrapper i {
  font-size: 2.5rem;
  color: var(--tph-blanco);
}

@keyframes pulse-icon {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(26, 66, 133, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(26, 66, 133, 0.4);
  }
}

.modal-title-custom {
  font-family: var(--tph-font-VartadinBold);
  color: var(--tph-blanco);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

.modal-subtitle {
  font-family: var(--tph-font-VartadinRegular);
  color: var(--tph-blanco);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.form-group-custom {
  position: relative;
}

.form-label-custom {
  font-family: var(--tph-font-VartadinRegular);
  color: var(--tph-azul-marino);
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.form-control-custom {
  border: 2px solid var(--tph-crema);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-family: var(--tph-font-VartadinRegular);
  color: var(--tph-negro);
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.form-control-custom:focus {
  border-color: var(--tph-azul-marino);
  box-shadow: 0 0 0 0.2rem rgba(26, 66, 133, 0.15);
  color: var(--tph-negro);
  background-color: white;
  outline: none;
}

.form-control-custom::placeholder {
  color: #999;
  font-size: 0.9rem;
}

.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--tph-azul-marino);
  transition: all 0.3s ease;
  z-index: 10;
}

.password-toggle:hover {
  color: var(--tph-rojo);
  transform: translateY(-50%) scale(1.1);
}

.recuperar-pass-link {
  color: var(--tph-azul-marino);
  font-family: var(--tph-font-VartadinRegular);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.recuperar-pass-link:hover {
  color: var(--tph-rojo);
  text-decoration: underline;
}

.btn-acceso-custom {
  background: var(--tph-azul-marino);
  color: white;
  font-family: var(--tph-font-VartadinRegular);
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 66, 133, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-acceso-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--tph-rojo);
  transition: left 0.3s ease;
  z-index: 0;
}

.btn-acceso-custom:hover::before {
  left: 0;
}

.btn-acceso-custom .btn-text,
.btn-acceso-custom i {
  position: relative;
  z-index: 1;
}

.btn-acceso-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(221, 14, 18, 0.4);
}

.btn-acceso-custom:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(26, 66, 133, 0.3);
}

.btn-cancelar-custom {
  background-color: transparent;
  color: var(--tph-blanco);
  font-family: var(--tph-font-VartadinRegular);
  font-size: 0.95rem;
  border: 2px solid var(--tph-crema);
  border-radius: 50px;
  padding: 0.7rem 2rem;
  transition: all 0.3s ease;
}

.btn-cancelar-custom:hover {
  background-color: var(--tph-crema);
  border-color: var(--tph-rojo);
  color: var(--tph-negro);
  transform: translateY(-2px);
}

.alert-custom {
  border-radius: 15px;
  font-family: var(--tph-font-VartadinRegular);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación de entrada del modal */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 576px) {
  .modal-title-custom {
    font-size: 1.5rem;
  }

  .modal-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .modal-icon-wrapper i {
    font-size: 2rem;
  }

  .modal-area-personal .modal-body,
  .modal-area-personal .modal-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

#userIcon {
  max-width: 20px;
  margin-left: 8px;
}

#mainMenu {
  font-family: var(--tph-font-body);
  text-transform: uppercase;
  font-weight: 600;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: var(--tph-blanco);
  flex-wrap: wrap;

}

#mainMenu .menu-topbar {
  display: block;
  flex: 0 0 100%;
  order: -1;
  min-height: 50px;
  width: 100%;
  background-color: var(--tph-azul-marino);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

#mainMenu .menu-topbar-text {
  font-family: var(--tph-font-arial);
  font-size: 0.85rem;
  color: var(--tph-blanco);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#mainMenu .container {
  min-height: 4rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 992px) {
  #mainMenu .container {
    display: flex;
    align-items: center;
  }
}

/* Para pantallas entre 992px y 1199px (tablets/intermedias) */
@media (min-width: 992px) and (max-width: 1199px) {
  #mainMenu .nav-link {
    display: flex;
    align-items: center;
  }
}

#mainMenu .nav-link {
  color:var(--tph-negro);
  font-family: var(--tph-font-arial);
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}


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

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

#mainMenu .navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0.5rem;
}

#mainMenu .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='%23c70011' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.8rem;
  height: 1.8rem;
}

@media (max-width: 991px) {
  #mainMenu {
    padding: 0;
  }

  #mainMenu .menu-topbar {
    min-height: 24px;
    padding: 0 0.75rem;
  }

  #mainMenu .menu-topbar-text {
    font-size: 0.75rem;
  }

  #mainMenu .container {
    min-height: 3rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  #mainMenu .navbar-toggler {
    padding: 0.25rem;
  }

  #mainMenu .navbar-toggler-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .navTitle{
   padding-top: 1.5rem;
  }
}

#mainMenu .navbar-toggler:hover .navbar-toggler-icon,
#mainMenu .navbar-toggler:focus .navbar-toggler-icon {
  opacity: 0.8;
}

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



/********************************************************************************** BANNER PROMOCIONAL  *******************************************************************************/

#banner-promo {
  background-color: var(--tph-oscuro);
  padding: 0.5rem 0;
}

.banner-promo-titulo {
  font-family: var(--tph-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--tph-crema);
  line-height: 1.4;
}

.banner-promo-titulo sup {
  font-size: 0.6em;
  top: -0.5em;
}

.imHeaderEmpower{
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(40px, 5.5vw, 96px);
}

@media (min-width: 768px) {
  .banner-promo-titulo {
    font-size: 1.25rem;
  }
}

@media (min-width: 992px) {
  .banner-promo-titulo {
    font-size: 1.5rem;
  }
}



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

/* Panel hero dentro del header: overlay con 2 columnas (texto + carrusel) */
#inicio {
  position: relative;
}

#inicio .header-branding {
  z-index: 5;
  width: 100%;
}

#inicio .header-branding__img_empower {
  width: 100%;
    max-width: 400px;
    min-width: 180px;
    margin-top: 32%;
    margin-right: 8%;
}
#inicio .header-branding__img_cine {
width: 83%;
margin-top: 9%;
margin-bottom: 6%;
}
#inicio .header-branding__img_logo{
  width:60%;
  max-width:180px;
  min-width:80px; 
  margin-bottom: -100%;
}
.pRakuten{
  color:var(--tph-rojoRakuten);
  font-size: 1.5rem;
  font-family: var(--tph-font-VartadinBold);
   text-align: right;
}
#inicio picture,
#inicio picture img {
  display: block;
  width: 100%;
  height: auto;
}

#inicio .heroHeader__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

#inicio .heroHeader__overlay .container {
  pointer-events: auto;
}

/* El diseño anterior posicionaba .divTitulo en absoluto; aquí lo dejamos como panel normal */
#inicio .heroHeader__overlay .divTitulo {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  text-align: left;
  max-width: 100%;
}

/* Carrusel en la derecha */
#inicio .heroCarousel {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: 0;
  position: relative;
}

#inicio .heroCarousel .carousel-inner {
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

#inicio .heroCarousel .carousel-item img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}

/* Indicadores debajo de la imagen (no superpuestos a los lados) */
#inicio .heroCarousel .heroCarousel__indicators {
  position: absolute;
     left: 5px;
    right: 0;
    bottom: -24px;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

#inicio .heroCarousel .heroCarousel__indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background-color: var(--tph-blanco);
  opacity: 0.6;
  border: 0;
}

#inicio .heroCarousel .heroCarousel__indicators .active {
  background-color: var(--tph-azul);
  opacity: 1;
}



@media (max-width: 991px) {
  #inicio .header-branding__img {
    height: auto;
    max-height: clamp(24px, 6vw, 44px);
  }

  #inicio .header-branding__img.header-branding__img--empower {
    max-height: clamp(32px, 8vw, 64px);
  }

  #inicio .heroHeader__overlay {
    align-items: flex-end;
    padding-bottom: 1rem;
  }

  #inicio .heroCarousel {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

#inicio .divTitulo {
  position: absolute;
  bottom: -6%;
  left: 22%;
  transform: translate(-50%, -50%);
    /* max-width: 90%; */
    /* height: auto; */
    /* z-index: 2; */
    /* display: flex; */
   /* flex-direction: column; */
   /* justify-content: center;*/
    text-align: center;
}


.pNegroParticipar{
    color: var(--tph-blanco);
    background: black;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
    padding: 1vh 3vh;
    margin: 0;
    margin-bottom: 2vh; 
    font-family: var(--tph-font-HisenseMedium);
    border-radius: 20px;
    font-size: 2vh;
}

.contenedor-lineas {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  min-height: auto;
  display: inline-block;
  line-height: 1;
}

/* En el hero: que las líneas no ocupen toda la pantalla */
#inicio .contenedor-lineas {
  display: block;
  width: fit-content;
  max-width: 100%;
}

#inicio .lineaTop,
#inicio .lineaBottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tph-azul);
  z-index: 1;
}

#inicio .lineaTop {
  top: 0;
}

#inicio .lineaBottom {
  bottom: 0;
}

.contenedor {
  position: relative;
  width: 600px;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Líneas */
.linea {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tph-azul);
  z-index: 1;
}

.linea.top { 
  top: 0;
  margin-bottom: 0;
}
.linea.bottom { 
  bottom: 0;
  margin-top: 0;
}

.linea.linea-full-width {
  position: relative;
  left: 50%;
  right: auto;
  width: 100vw;
  transform: translateX(-50%);
  margin-left: 0;
  margin-right: 0;
}

/* Texto */
.contenido {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  margin: 0;
}

.numero {
  font-size: 125px;
  color:var(--tph-blanco);
  margin-right: 20px;
  font-family: var(--tph-font-Impact);
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1;
}

.texto {
  font-size: 50px;
  color:var(--tph-blanco);
  line-height: 1;
  font-family: var(--tph-font-Impact);
  margin: 0;
}

.fondo {
    width: 100%;
    height: 29px;
    background-repeat: repeat-x;
    background-size: contain;
    background-position: top left;
    background-color: white;
    
}
.divSubtitulo{
  margin-top:11%;
}
.h2Consigue6meses{
  font-family: var(--tph-font-HisenseMedium);
  color: var(--tph-blanco);
  font-size: x-large;
  text-align: left;
}
.plavavajillas{
  color: var(--tph-blanco);
  font-family: var(--tph-font-HisenseLight);
      font-size: 1.5vh;
    text-align: left;
}

.btnQuieroParticipar{
    font-family: var(--tph-font-HisenseMedium);
    color: var(--tph-blanco);
    padding: 1.5vh 3vh;
    margin: 0;
    margin-left: -3vh;
    border-radius: 10px;
    font-size: 1.5vh;
    border: none;
    margin-right: 2vh;
}

.btnQuieroParticipar{
  background: var(--tph-azul);
}
.btnSaberMas{
    background-color: var(--tph-gris-claro);
    font-family: var(--tph-font-HisenseMedium);
    color: var(--tph-blanco);
    padding: 1.5vh 5vh;
    margin: 0;
    /* margin-right: 2vh; */
    border-radius: 10px;
    font-size: 1.5vh;
    border: none;
}
.divButton{
  margin:0;
  padding:0;
}



@media (max-width: 991px) {
  #inicio .btnParticiparHeroSlot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4%;
    display: flex;
    justify-content: center;
    z-index: 6;
    pointer-events: none;
  }

  #inicio .btnParticiparHeroSlot .btnParticiparRed,
  #inicio .btnParticiparRed.btnParticiparRed--overHero {
      pointer-events: auto;
      font-size: 35px;
        padding: 5px 55px;
        line-height: 1;
  }
}

/* Hero Content */
.hero-content {
  padding: 2rem 1rem;
  text-align: center;
  background-color: var(--tph-oscuro);
}

.hero-titulo {
  font-family: var(--tph-font-thin);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--tph-azul-medio);
  font-weight: bold;
}

/* Botón Hero */
.btn-hero {
  background-color: var(--tph-azul);
  color: var(--tph-blanco);
  font-family: var(--tph-font-body);
  font-size: 2rem;
  font-weight: 600;
  border: none;
  border-radius: 0;
  padding: 0.25rem 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 66, 133, 0.3);
}

.btn-hero:hover {
  background-color: var(--tph-verde);
  color: var(--tph-blanco);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 66, 133, 0.4);
}

.btn-hero:active {
  transform: translateY(0);
}

/* Producto Hero */
.hero-product {
  margin-top: 2rem;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-titulo {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {


  .hero-content {
    padding: 2rem 3rem 2rem 2rem;
  }

  .hero-titulo {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .btn-hero {
    font-size: 1.2rem;
  }

  .hero-product {
    margin-top: 3rem;
  }
}

@media (min-width: 1200px) {
  .hero-titulo {
    font-size: 2.8rem;
  }
}

/********************************************************************************** info  *******************************************************************************/



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

.btn-big {
  font-size: 2rem;
}

#mecanica {
  background-color: var(--tph-gris);

}

#mecanica .img-flecha {
  max-width: 200px;
  margin-bottom: 3rem;
}

#mecanica .legenda {
  font-family: var(--tph-font-body);
  font-size: 0.9rem;
  color: var(--tph-negro);
}

#mecanica .titulo {
  font-family: var(--tph-font-display);
  font-size: 3rem;
  color: var(--tph-naranja);
  text-transform: uppercase;
  font-weight: bold;
}
#mecanica .subtitulo {
  font-family: var(--tph-font-body);
  font-size: 1rem;
  color: var(--tph-negro);
}
#mecanica .logo-bizum-mecanica {
  position: relative;
}

#mecanica .row.mb-4 {
  transition: transform 0.3s ease;
}

#mecanica .row.mb-4:hover {
  transform: translateX(10px);
}


.part3{
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  width: 100%; 
}
.imgNevera {
    padding-bottom: 6.5vh;
    max-width: 63%;
    width: 100%;
    height: auto;
}
.txtParticipar{
    font-size: 3vw;
    font-family:var(--tph-font-BOD_BLAR);
    color:var(--tph-kiwi);
}
.txtPromo{
  padding-top: 2.5vh;
  padding-bottom: 7vh;
  color: var(--tph-marron);
}
.h2Rakuten {
    font-family: var(--tph-font-VartadinBold);
    font-size: 4rem;
    display: inline-block;
    padding-top: 5vw;
    box-sizing: border-box;
    overflow-x: hidden;
}
.h2RegaloDigital{
  font-family: var(--tph-font-VartadinRegular);
  font-size: 3rem;
}

.h2PasosParticipar{
  font-family: var(--tph-font-VartadinBold);
  margin-top:10%;
  font-size: 5rem;
}
.btnStylesParticiparGanar {
    background-color: var(--tph-negro);
    color: var(--tph-blanco);
    font-family: var(--tph-font-VartadinRegular);
    font-weight: bold;
    border: none;
    box-shadow: 0 4px 15px rgba(26, 66, 133, 0.3);
    font-size: 2rem;
    border-radius: 38px;
    padding: 1vh 7.5vw;
    cursor: pointer;
}

.h3PasosParticipar{
  font-family: var(--tph-font-VartadinRegular);
  margin-top: 2%;
  font-size: 1.8rem;
}

.imgPasos{
  width: 70%;
}
.h3TituloPasos{
  font-family: var(--tph-font-VartadinRegular);
  font-size: 2rem;
}
.pPasos{
  font-family: var(--tph-font-VartadinRegular);
  font-size: 1.2rem;
}

.pasosBloque{
  text-align: left;
}

.pasosBloque__lista{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pasosBloque .pasoItem{
  font-family: var(--tph-font-HisenseMedium);
  color: var(--tph-blanco);
}

.pasosBloque .pasoItem__row{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pasosBloque .pasoItem__left{
  flex: 0 0 auto;
}

.pasosBloque .pasoItem__right{
  flex: 1 1 auto;
}

.pasosBloque .pasoItem__left h2{
  margin: 0;
  font-size: 9rem;
  line-height: 1;
  color:var(--tph-azul);
  font-family: var(--tph-font-Modelica);
}

.pasosBloque .pasoItem__right .pasoItem__right1 h3{
  margin: 0;
  color:var(--tph-azul);
  font-family: var(--tph-font-HisenseMedium);
}

.pasosBloque .pasoItem__right .pasoItem__right1 p{
  margin: 0.5rem 0 0;
  color:var(--tph-blanco);
  font-family: var(--tph-font-Modelica);
}

.pasosBloque .pasoItem:not(:last-child){
  border-bottom: 1px solid var(--tph-azul);
  padding-bottom: 0.75rem;
}

.pasoItem__right1{
  padding-left: 16%;
}
.pasoItem__right{
  padding-left: 10%;
}

.mecanicaCarouselWrapper {
  width: 100%;
  max-width: 1050px;
}

.mecanicaCarousel {
  position: relative;
  padding-left: 3rem;
  padding-right: 3rem;
}

.mecanicaCarousel .carousel-control-prev,
.mecanicaCarousel .carousel-control-next {
  width: 3rem;
}

.mecanicaCarousel .carousel-control-prev {
  left: 0;
}

.mecanicaCarousel .carousel-control-next {
  right: 0;
}

#mecanica .mecanicaCarousel .mecanicaCarousel__desc{
  color: var(--tph-blanco) !important;
  font-family: var(--tph-font-HisenseLight);
}

@media (max-width: 576px) {
  .mecanicaCarousel {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .mecanicaCarousel .carousel-control-prev,
  .mecanicaCarousel .carousel-control-next {
    width: 2.25rem;
  }
}

.mecanicaCarousel .carousel-inner {
  border-radius: 10px;
  overflow: hidden;
}

.mecanicaCarousel img {
  display: block;
}
.txtPromo2{
  font-size: 1.3vw;
  padding-top: 5.5vh;
  font-family: var(--tph-font-centra);
  font-weight: bold;
  color:var(--tph-marron);
}

.part4 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  /* width: 100vw; */
  /* padding: 5vh 0; */
  box-sizing: border-box;
  overflow-x: hidden;
  gap: 5vw; 
}
.divRuedaQueso {
    max-width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.h2Rueda{
  font-family: var(--tph-font-centra);
  color: var(--tph-marron);
  font-size: 4vh;
  margin: 10px;
}
.txtRueda {
    color: var(--tph-marron);
    margin: 0;
    font-size: 1.vh;
    font-family: var(--tph-font-gothic);
}

/********************************************************************************** premio  *******************************************************************************/

#premio .titulo {
    font-family: var(--tph-font-display);
    color: var(--tph-crema);
    background-color: var(--tph-azul-marino);
    width: 70%;
    margin: 0 auto;
}

#premio .premio-item {
  transition: transform 0.3s ease;
}

#premio .premio-item:hover {
  transform: translateX(10px);
}

#premio .icono-premio {
  max-width: 80px;
  height: auto;
}

#premio p {
  color: var(--tph-blanco);
  font-family: var(--tph-font-VartadinRegular);
  font-size: 1.5rem;
}

#premio strong {
  color: var(--tph-negro);
}

.premioProductos {
  display: none;
}

@media (max-width: 991px) {
  .premioProductos {
    display: block;
    text-align: center;
    margin-bottom: 2rem;
  }
}

/********************************************************************************** divisor de secciones  *******************************************************************************/

.divisor-superior , .divisor-superior-inverso{
  background-color: var(--tph-azul-marino);
  background-repeat: repeat-x;
  background-position: top left;
  background-size: auto 100%;    /* opcional: ajusta altura */
  line-height: 0;
  overflow: hidden;
}


.divisor-superior img {
    padding-bottom: 20px;
    height: auto; 
}
.divisor-superior-inverso{
  transform: scaleY(-1);
}

.divisor-inferior {
  margin: -1rem 0 0 0;
  padding: 0;
  line-height: 0;
  display: block;
  overflow: hidden;
  background-color: var(--tph-rojo);
}

.divisor-inferior img {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  height: auto;
}

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

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

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

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

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

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

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

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

/* Tarjeta de cuenta atrás en sección participa */

.countdown-card {
  background-color: var(--tph-amarillo);
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: var(--tph-blanco);
}

.countdown-title {
  font-family: var(--tph-font-gothic);
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  color: var(--tph-azul);
}

@media (min-width: 768px) {
  .countdown-title {
    font-size: 1.8rem;
  }
}

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

#participa {
  padding-top: 2rem;
 
}

#participa .titulo {
  font-size: 3rem;
  color: var(--tph-crema);
  font-weight: bold;
  padding: 1vh 3.7vw;   
  display: inline-block;
  background-color: var(--tph-azul-marino);
  width: 50%;
  margin: 0 auto;
}

#participa .subtitulo {
  font-family: var(--tph-font-VartadinRegular);
  font-size: 1rem;
  color: var(--tph-blanco);
  padding-top: 3%;
}

.txtComoParticipar {
  color: var(--tph-blanco);
  font-size: 5rem;
  font-family:var(--tph-font-VartadinBold) ;
}

/* Centra el botón del formulario en la sección participa */
#participa .btn-formulario {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#participa .legenda {
  font-family: var(--tph-font-body);
  color: var(--tph-crema);
  font-size: 0.9rem;
  line-height: 1.4;
  padding-top: 1rem;
  margin-top: 3rem;
}

.imgProductoParticipantes{
  max-width: 62%;
  width: 100%;
  margin-left: 18%;
}

@media (min-width: 992px) {
  #participa .titulo {
    font-size: 2.5rem;
  }
  
  #participa .subtitulo {
    font-size: 1.1rem;
    font-family: var(--tph-font-VartadinRegular);
    color:var(--tph-blanco);
  }
}

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

form#formReg_l input {
  border-radius: 5rem;
  border-color: var(--tph-marron);
  font-family: var(--tph-font-VartadinRegular);
}#contacto .titulo

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

form#formReg_l .form-select {
    border-color: var(--tph-marron);
    /* background-color: var(--tph-marron); */
    font-family: var(--tph-font-VartadinRegular);
    border-radius: 5rem;
    color: #ffffff;
}

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#formReg_l #checkBases + .form-check-label,
form#formReg_l #checkBases + .form-check-label a {
  color: #ffffff;
}

form#formReg_l option {
  color: #ffffff;
  background-color: var(--tph-marron);
  font-size: 1rem;
}

form#formReg_l option:hover {
  background-color: var(--tph-marron);
}

form .input-group-text {
  background: transparent;
  color: var(--tph-blanco);
  border: none;
}


form#formReg_l .form-check {
  font-size: 0.8rem;
}

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

/* Checkbox de bases: mostrar "bolita" también cuando NO está marcado */
form#formReg_l #checkBases.form-check-input:not(:checked):not(:indeterminate),
form#formReg_l #checkPubli.form-check-input:not(:checked):not(:indeterminate) {
  background-image: radial-gradient(circle at 25% 50%, var(--tph-azul-marino) 0 24%, transparent 25%);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% 100%;
}






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

.bg-azul-participa {
  background-color: var(--tph-azul);
  position: relative;
  min-height: 200px;
}

.bg-azul-participa .flecha {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: auto;
}

.h3Regalamos{
  color: var(--tph-blanco);
  font-family: var(--tph-font-VartadinBold);
  margin-top: 4%;
  font-size: 3rem;
  margin-bottom: 3%;
}
/********************************************************************************** premios  *******************************************************************************/

.premioProductos{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

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

#contacto {
  width: 100%;
  background-color: var(--tph-blanco);
  text-align: center;
}

#contacto .logo-contacto {
     width: 31%;
    height: auto;
    display: block;
    margin: 0 auto;
}

#contacto .titulo {
  font-family: var(--tph-font-VartadinBold);
  font-size: 5rem;
  
}

#contacto .subtitulo {
  font-family: var(--tph-font-VartadinRegular);
  font-size: 1.5rem;
  line-height: 1.6;
}

#contacto .contacto-info {
  margin-top: 2rem;
}

#contacto .tel_promo {
  font-family: var(--tph-font-VartadinRegular);
  font-size: 1.5rem;
  font-weight: 600;
}

#contacto .tel_promo a {
  text-decoration: none;
  transition: color 0.3s ease;
  color: var(--tph-negro);
}

#contacto .tel_promo a:hover {
  font-family: var(--tph-font-VartadinRegular) ;
}

#contacto .email_contacto {
  font-family: var(--tph-font-VartadinRegular);
  font-size: 1.3rem;
  color:var(--tph-negro);
  
}

#contacto .email_contacto a {
  font-family: var(--tph-font-VartadinRegular);
  text-decoration: none;
  color:var(--tph-negro);
  font-size: 3.5rem;
}

#contacto .horario {
  font-family: var(--tph-font-VartadinRegular);
  font-size: 1rem;
  line-height: 1.8;
}

@media (min-width: 992px) {
  #contacto .titulo {
    font-size: 3.5rem;
  }
  
  #contacto .tel_promo {
    font-size: 1.8rem;
  }

.txtReferencia{
  margin-top: 5%;
}
}

/********************************************************************************** BBLL (BASES LEGALES) *******************************************************************************/

.bbll-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  font-family: var(--tph-font-body);
  color: var(--tph-negro);
  background-color: var(--tph-blanco);
  line-height: 1.8;
}

.bbll-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid var(--tph-rojo);
}

.bbll-title {
  font-family: var(--tph-font-body);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--tph-rojo);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 0;
  text-transform: uppercase;
}

.bbll-title em {
  font-style: normal;
  color: var(--tph-verde);
}

.bbll-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: var(--tph-oscuro);
  border-radius: 12px;
  border-left: 4px solid var(--tph-verde);
  transition: all 0.3s ease;
}

.bbll-section:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.bbll-subtitle {
  font-family: var(--tph-font-body);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--tph-verde);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--tph-naranja);
  padding-bottom: 0.5rem;
}

.bbll-subtitle-small {
  font-family: var(--tph-font-body);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--tph-azul-medio);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.bbll-text {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: justify;
  hyphens: auto;
}

.bbll-text strong {
  color: var(--tph-rojo);
  font-weight: 700;
}

.bbll-text a {
  color: var(--tph-azul-medio);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.bbll-text a:hover {
  color: var(--tph-naranja);
}

.bbll-list,
.bbll-ordered-list {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.bbll-list li,
.bbll-ordered-list li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.bbll-list li::marker {
  color: var(--tph-rojo);
}

.bbll-ordered-list li::marker {
  color: var(--tph-verde);
  font-weight: 700;
}

.bbll-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bbll-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--tph-blanco);
}

.bbll-table thead {
  background: linear-gradient(135deg, var(--tph-verde) 0%, var(--tph-azul-medio) 100%);
  color: var(--tph-blanco);
}

.bbll-table th {
  padding: 1rem;
  text-align: left;
  font-family: var(--tph-font-body );
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bbll-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--tph-oscuro);
}

.bbll-table tbody tr:nth-child(even) {
  background-color: var(--tph-oscuro);
}

.bbll-table tbody tr:hover {
  background-color: var(--tph-crema);
  transition: background-color 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .bbll-content {
    padding: 2rem 1rem;
  }

  .bbll-section {
    padding: 1.5rem;
  }

  .bbll-table th,
  .bbll-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }

  .bbll-list,
  .bbll-ordered-list {
    padding-left: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .bbll-content {
    padding: 4rem 2rem;
  }

  .bbll-text {
    font-size: 1.1rem;
  }
}

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

footer {
  background-color: var(--tph-negro);
  position: sticky;
  font-family: var(--tph-font-gothic);
  color: var(--tph-blanco, #fff);
  border-top: solid var(--tph-lila) 1px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

footer nav {
  justify-content: center;
}

footer .ms-auto {
  margin-left: 0 !important;
}/***/

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 a:focus,
footer a:active {
  color: var(--tph-blanco);
}

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

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



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

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

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

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

/* Removed empty media query block for min-width: 536px */


@media (max-width: 600px) {
  .logoVarta {
    position: static;
        width: 43%;
        margin-top: 3%;
        margin-left: -17%;
}
#inicio .header-branding__img_empower {
    width: 71%;
    max-width: 400px;
    min-width: 180px;
    margin-top: 6%;
    margin-right: 16%;
}

  .header-branding__img_logo {
    display: none !important;
  }
  .header-branding__img_cine {
        width: 100%;
        max-width: 238px;
        margin-top: 26% !important;
  }
  .pRakuten{
    display: none !important;
  }
  .h2PasosParticipar {
    font-size: 4rem;
}
.carousel-small {
    max-width: 350px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

@media (min-width: 1024px) {
  .pNegroParticipar{
    padding: 1vh 1vh;
    font-size: 1.6vh;
  }

  .header-branding__img_logo {
    margin-bottom: -89% !important;
  }

  .header-branding__img_empower{
    margin-top: 21% !important;
  }
  #inicio .header-branding__img_cine {
         width: 80%;
        margin-top: 9%;
  }

  .pRakuten {
    font-size: 1.4rem;
  }

  .carousel-small {
    max-width: 700px;
  }

}

@media (min-width: 1200px) {
  .header-branding__img_logo {
    margin-bottom: -57% !important;
  }

  .header-branding__img_empower{
    width: 87% !important;
    margin-top: 0% !important;
  }
  #inicio .header-branding__img_cine {
    width: 69%;
    margin-top: 1%;
  }
 .pRakuten {
        font-size: 1.2rem;
  }

  .btn-hero {
    font-size: 1.2rem;
  }
  .hero-product {
    margin-top: 0rem;
  }

  #inicio h1 {
    font-size: 1.5rem;
        line-height: 1;
  }

  .imgen-bolsa-producto-hero {
    max-width: 178px;
  }

  #premio .titulo {
    font-size: 3.5rem;
  }
  
  #premio p {
    font-size: 1.1rem;
  }

}

@media (min-width: 1280px) {
.header-branding__img_logo {
    margin-bottom: -66% !important;
  }

  .header-branding__img_empower{
    margin-top: 0% !important;
  }
  #inicio .header-branding__img_cine {
    width: 73%;
    margin-top: 2%;
  }

  .pRakuten {
    font-size: 1.4rem;
  }
}

@media (min-width: 1300px) {
  .header-branding__img_logo {
    margin-bottom: -66% !important;
  }

  .header-branding__img_empower{
    margin-top: 0% !important;
  }
  #inicio .header-branding__img_cine {
    width: 73%;
    margin-top: 2%;
  }

  .pRakuten {
    font-size: 1.4rem;
  }

  #contacto .row.align-items-center {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  #contacto .col-lg-6.text-center img {
    max-width: 260px;
  }
}

@media (min-width: 1400px) {
  .hero-product {
    margin-top: 0rem;
  }

  #inicio h1 {
    font-size: 1.5rem;
        line-height: 1;
  }

  .imgen-bolsa-producto-hero {
    max-width: 257px;
  }
  #premio .titulo {
    font-size: 3rem;
  }
  
  #premio p {
    font-size: 1.1rem;
  }
}

/* ============================================
   SEO: Clase para textos ocultos (White-Hat)
   Oculta visualmente pero mantiene accesible 
   para lectores de pantalla y bots de búsqueda
   ============================================ */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (min-width: 1600px) {

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

  .hero-product {
    margin-top: 0rem;
  }

  #inicio h1 {
    font-size: 2.2rem;
        line-height: 1;
  }

  .imgen-bolsa-producto-hero {
    max-width: 286px;
  }

  .hero-content {
    padding: 2rem;
  }

  #premio .titulo {
    font-size: 3.5rem;
  }
  
  #premio p {
    font-size: 1.1rem;
  }

  .header-branding__img_logo {
    margin-bottom: -98% !important;
  }

  .header-branding__img_empower{
    margin-top: 38% !important;
  }
  #inicio .header-branding__img_cine {
    width: 79%;
    margin-top: 15%;
  }

  .pRakuten {
    font-size: 1.6rem;
  }


}

@media(min-width:1800px) {
   .hero-product {
    margin-top: 0rem;
  }

  #inicio h1 {
    font-size: 2.5rem;
        line-height: 1;
  }

  .imgen-bolsa-producto-hero {
    max-width: 358px;
  }
  #mecanica .titulo {
    font-size: 5rem;
  }

  #premio .titulo {
    font-size: 5rem;
  }
  
  #premio p {
    font-size: 1.1rem;
  }
}
@media (max-width: 1200px) {
  #inicio .divTitulo {
    font-size: 20px;
    padding: 20px;
    bottom: -20%;
  }
  #inicio .hero-title1{
    font-size: 60px;
  }
  #inicio .hero-title2{
    font-size: 36px;
  }
  #inicio .hero-title3{
    font-size: 24px; 
  }
  #inicio .hero-title4{
    font-size: 36px;
  }
  #inicio .pFecha{
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  #mecanica .hero-title1{
    font-size: 96px;
  }
  #mecanica .hero-title2{
    font-size: 58px;
  }
  #mecanica .hero-title3{
    font-size: 37px;
  }
  #mecanica .hero-title4{
    font-size: 56px;
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  #mecanica #divTituloMobileSlot {
    display: flex;
    justify-content: center;
    margin-top: -16px;
  }

  #mecanica .divTitulo.divTitulo--moved {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: static !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 auto 1.5rem;
    text-align: center;
  }

  /* Orden en móvil dentro de mecánica: botón -> título -> fecha */
  #mecanica .divTitulo.divTitulo--moved .btnParticiparRed {
    order: 1;
    font-size: 18px;
    padding: 8px 18px;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  #mecanica .divTitulo.divTitulo--moved .hero-title {
    order: 2;
    color:var(--tph-rojo);
  }

  #mecanica .divTitulo.divTitulo--moved .pFecha {
    order: 3;
    color:var(--tph-marron);
    padding:8%;
  }
  #mecanica .imgNevera {
    padding-bottom: 6.5vh;
    max-width: none;
    width: 100%;
    height: auto;
  }
  .txtParticipar {
    font-size: 5vw;
  }
  .txtPromo2, .txtPromo {
    font-size: 5vw;
    padding: 5% 0%;
  }
  .txtComoParticipar {
    font-size: 8vw;
    padding: 2% 0%;
    width: 86%;
  }
  .txtPromo2{
    padding: 10% 0%;
  }

  /* Pasos en columna en móvil */
  .part4 {
    flex-direction: column;
    gap: 24px;
  }

  .divRuedaQueso {
    max-width: none;
    width: 100%;
  }
  #participa .btn-formulario{
    padding: 0vh 17.5vw;
    font-size: 7.6vw;
    margin-left: auto;
    margin-right: auto;
  }

  /* En móvil, centra la imagen que estaba desplazada por margin-left fijo */
  .imgProductoParticipantes{
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #premio .titulo{
    font-size: 3.15vh
  }
  .Contact-logo-contacto{
    width: 82%;
    height: 31%;
  }
  #contacto .titulo{
    font-size: 3rem;
  }
}
