:root {
	--main-tph-color: #1a1a1a;
	--tph-gris: #393939;
	--tph-blanco: white;
	--tph-negro: #1a1a1a;
	--tph-cuenta-atras-time: #e8871b;
	--tph-cuenta-atras-title: #e8871b;
	--tph-cuenta-atras-dia: #e8871b;
	--tph-form-label: rgb(255, 255, 255);
	--tph-form-placeholder: #868686;
	--tph-form-input: #000000;
	--tph-form-bg: white;
	--tph-font-body: 'Annuario Medium Regular';
	--tph-font-titulos: 'Bebas Neue Bold';
	--tph-font-subtitulos: 'Annuario Bold';
	--tph-font-botones: 'Duplet Bold';
	--animation-primary: 0.5s ease-out;
	--hover-transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
	--dulcesol-red: #da1e28;
	--dulcesol-dark-red: #c8000a;
	--dulcesol-yellow: #ffff00;
	--dulcesol-green: #009f63;
	--dulcesol-brown: #963c0f;
	--dulcesol-grey-200: #f2e9dc;
	--dulcesol-grey-800: #666666;
	/* Animaciones dinámicas */
	--reveal-duration: 0.8s;
	--reveal-easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--stagger-delay: 0.15s;
}

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

@font-face {
	font-family: 'Bebas Neue Bold';
	src: url('../../../fonts/bebasnue-bold.woff2') format('woff2');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Annuario Bold';
	src: url('../../../fonts/Resistenza-Annuario-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Annuario Medium Regular';
	src: url('../../../fonts/resistenza-annuario-regular.woff2') format('woff2'),
		url('../../../fonts/resistenza-annuario-regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Duplet Bold';
	src: url('../../../fonts/duplet-bold.woff2') format('woff2');
	font-weight: bold;
	font-style: normal;
}


/* Estilos de títulos */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--tph-font-titulos);
}

/* Estilos de botones */
button, .btn, input[type="button"], input[type="submit"] {
	font-family: var(--tph-font-botones);
}

/********************************************************************* estilos generales *********************************************************/

html {
	scroll-behavior: smooth;
}

html,
body {
	overflow-x: hidden;
	height: 100%;
	margin: 0;
}

body {
	font-family: var(--tph-font-body);
	color: rgb(0, 0, 0);
	background-color: transparent;
	background-color: var(--dulcesol-red);
}

/********************************************************************* Scroll Reveal System *********************************************************/

.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity var(--reveal-duration) var(--reveal-easing),
				transform var(--reveal-duration) var(--reveal-easing);
	will-change: opacity, transform;
}

.reveal-left {
	opacity: 0;
	transform: translateX(-60px);
	transition: opacity var(--reveal-duration) var(--reveal-easing),
				transform var(--reveal-duration) var(--reveal-easing);
	will-change: opacity, transform;
}

.reveal-right {
	opacity: 0;
	transform: translateX(60px);
	transition: opacity var(--reveal-duration) var(--reveal-easing),
				transform var(--reveal-duration) var(--reveal-easing);
	will-change: opacity, transform;
}

.reveal-scale {
	opacity: 0;
	transform: scale(0.9);
	transition: opacity var(--reveal-duration) var(--reveal-easing),
				transform var(--reveal-duration) var(--reveal-easing);
	will-change: opacity, transform;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
	opacity: 1;
	transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays para grupos */
.stagger-1 { transition-delay: calc(var(--stagger-delay) * 1); }
.stagger-2 { transition-delay: calc(var(--stagger-delay) * 2); }
.stagger-3 { transition-delay: calc(var(--stagger-delay) * 3); }
.stagger-4 { transition-delay: calc(var(--stagger-delay) * 4); }
.stagger-5 { transition-delay: calc(var(--stagger-delay) * 5); }

/* Respetar preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
	.reveal, .reveal-left, .reveal-right, .reveal-scale {
		opacity: 1;
		transform: none;
		transition: none;
	}
}


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

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

.cursor-pointer {
	cursor: pointer;
}

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

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

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

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

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

.btn-formulario-cabecera {
	background-color: var(--tph-amarillo-oscuro);
	color: var(--dulcesol-red);
	font-size: 2rem;
	padding: 1.2rem 1.5rem;
	border: none;
	border-radius: 0;
	text-align: center;
}

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

.btn-formulario {
	background-color: var(--dulcesol-red);
	color: var(--tph-blanco);
	font-size: 2rem;
	padding: 0.2rem 4.5rem;
	border: none;
	border-radius: 2.5rem;
	text-align: center;
	font-family: var(--tph-font-botones);
	transition: all 0.3s ease;
}

.btn-formulario:hover {
	background-color: var(--dulcesol-yellow);
	color: var(--tph-negro);
}

.icono-flecha {
	font-size: 1.5rem;
	vertical-align: middle;
}


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

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

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

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

/********************************************************************************** MODAL AREA PERSONAL  *******************************************************************************/

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

/* 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(--dulcesol-red);
  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(--dulcesol-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(218, 30, 40, 0.3);
  animation: pulse-icon 2s infinite;
}

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

@keyframes pulse-icon {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(218, 30, 40, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(218, 30, 40, 0.4);
  }
}

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

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

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

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

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

.form-control-custom:focus {
  border-color: var(--dulcesol-red);
  box-shadow: 0 0 0 0.2rem rgba(218, 30, 40, 0.15);
  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(--dulcesol-green);
  transition: all 0.3s ease;
  z-index: 10;
}

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

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

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

.btn-acceso-custom {
  background: var(--dulcesol-red);
  color: white;
  font-family: var(--tph-font-body);
  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(218, 30, 40, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-acceso-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--dulcesol-yellow);
  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(255, 255, 0, 0.4);
  color: var(--dulcesol-red);
}

.btn-acceso-custom:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(218, 30, 40, 0.3);
}

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

.btn-cancelar-custom:hover {
  background-color: var(--dulcesol-grey-200);
  border-color: var(--dulcesol-red);
  color: var(--tph-negro);
  transform: translateY(-2px);
}

.alert-custom {
  border-radius: 15px;
  font-family: var(--tph-font-body);
  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);
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: var(--dulcesol-red);
  border-bottom: 2px solid var(--dulcesol-yellow);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: padding 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

/* Navbar compacta al hacer scroll */
#mainMenu.scrolled {
  padding: 0.25rem 0;
  background-color: rgba(218, 30, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

#mainMenu .navbar-nav {
  gap: 0;
}

#mainMenu .nav-link {
  color: var(--tph-blanco);
  transition: all 0.3s ease;
  position: relative;
}

#mainMenu .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--dulcesol-yellow);
  transition: width 0.3s ease, left 0.3s ease;
}

#mainMenu .nav-link:hover::after {
  width: 100%;
  left: 0;
}

#mainMenu .nav-link:hover {
  color: var(--dulcesol-yellow);
}

#mainMenu .logo-menu {
  max-width: 120px;
  height: auto;
  transition: transform 0.4s ease;
}

#mainMenu.scrolled .logo-menu {
  transform: scale(0.85);
}

#mainMenu .navbar-brand {
  margin: 0;
  padding: 0;
}

/* Menú hamburguesa */
#mainMenu .navbar-toggler {
  border: none;
  padding: 0.5rem;
  outline: none;
  box-shadow: none;
}

#mainMenu .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

#mainMenu .navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 28px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#mainMenu .navbar-toggler-icon::before,
#mainMenu .navbar-toggler-icon::after,
#mainMenu .navbar-toggler-icon {
  background-color: white;
}

#mainMenu .navbar-toggler-icon::before,
#mainMenu .navbar-toggler-icon::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background-color: white;
  transition: all 0.3s ease;
}

#mainMenu .navbar-toggler-icon::before {
  transform: translateY(0);
}

#mainMenu .navbar-toggler-icon::after {
  transform: translateY(0);
}

/* Línea del medio */
#mainMenu .navbar-toggler-icon {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent calc(50% - 2px),
    white calc(50% - 2px),
    white calc(50% + 2px),
    transparent calc(50% + 2px),
    transparent 100%
  );
}

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



/********************************************************************************** Main Wrapper y Inicio  *******************************************************************************/

.main-wrapper {
	background-image: url('../../../img/template/dulcesol-50-aniversario/fondo-cabecera-web.avif');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

#inicio.hero-section {
	min-height: 600px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

/* Hero entrance animations */
.hero-anim-logo {
	opacity: 0;
	transform: translateY(-30px) scale(0.95);
	animation: heroFadeDown 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.hero-anim-title {
	opacity: 0;
	transform: translateY(30px);
	animation: heroFadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.hero-anim-cta {
	opacity: 0;
	transform: translateY(20px) scale(0.95);
	animation: heroFadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}

.hero-anim-left {
	opacity: 0;
	transform: translateX(-40px);
	animation: heroSlideRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.hero-anim-right {
	opacity: 0;
	transform: translateX(40px);
	animation: heroSlideLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

@keyframes heroFadeDown {
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroFadeUp {
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroSlideRight {
	to { opacity: 1; transform: translateX(0); }
}

@keyframes heroSlideLeft {
	to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
	.hero-anim-logo, .hero-anim-title, .hero-anim-cta,
	.hero-anim-left, .hero-anim-right {
		opacity: 1;
		transform: none;
		animation: none;
	}
}

#inicio.hero-section .row {
	align-items: flex-start;
}

#inicio .col-lg-2 {
	align-self: flex-start;
}

#inicio .col-lg-2 img {
	margin-top: -2px;
}

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

#inicio .logo-50 {
	max-width: 500px;
	width: 100%;
}

#inicio .hero-title {
	font-family: var(--tph-font-titulos);
	font-size: 3rem;
	line-height: 1.2;
	font-weight: bold;
	color: var(--tph-blanco);
	text-transform: uppercase;
}

#inicio .text-yellow {
	color: var(--dulcesol-yellow);
}

#inicio .btn-hero {
	background-color: var(--tph-negro);
	color: var(--tph-blanco);
	border: 2px solid var(--dulcesol-yellow);
	border-radius: 50px;
	padding: 0.75rem 2.5rem;
	font-family: var(--tph-font-botones);
	font-size: 1.1rem;
	text-transform: uppercase;
	font-weight: bold;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: inline-block;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

#inicio .btn-hero::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: var(--dulcesol-yellow);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.5s ease, height 0.5s ease;
	z-index: 0;
}

#inicio .btn-hero:hover::before {
	width: 300px;
	height: 300px;
}

#inicio .btn-hero:hover {
	color: var(--tph-negro);
	border-color: var(--tph-negro);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 255, 0, 0.4);
}

#inicio .btn-hero span,
#inicio .btn-hero {
	position: relative;
	z-index: 1;
}

/********************************************************************************** Sección Info Promoción  *******************************************************************************/

.promo-info-section {
	padding: 4rem 0;
	position: relative;
}

.promo-info-section::before {
	content: '';
	position: absolute;
	top: 41%;
	left: 0;
	width: 100%;
	height: 59%;
	background-color: var(--dulcesol-grey-200);
	clip-path: polygon(
		0% 15%,
		5% 13%,
		10% 10%,
		15% 6%,
		20% 3%,
		25% 0%,
		30% 3%,
		35% 7%,
		40% 12%,
		45% 17%,
		50% 22%,
		55% 17%,
		60% 12%,
		65% 7%,
		70% 3%,
		75% 1%,
		80% 3%,
		85% 6%,
		90% 10%,
		95% 13%,
		100% 15%,
		100% 100%,
		0% 100%
	);
	z-index: 0;
}

.promo-info-section > * {
	position: relative;
	z-index: 1;
}

.promo-info-content {
	padding: 2rem 1rem;
}

.promo-question {
	font-family: var(--tph-font-titulos);
	font-size: 5rem;
	color: var(--tph-blanco);
	text-transform: uppercase;
	font-weight: bold;
}

/* Floating suave para imágenes promocionales */
.float-gentle {
	animation: floatGentle 4s ease-in-out infinite;
}

.float-gentle-alt {
	animation: floatGentleAlt 5s ease-in-out infinite;
}

@keyframes floatGentle {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

@keyframes floatGentleAlt {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
	.float-gentle, .float-gentle-alt {
		animation: none;
	}
}

.promo-validity {
	font-family: var(--tph-font-body);
	font-size: 1rem;
	color: var(--tph-blanco);
}

.logo-dorado {
	max-width: 500px;
	width: 100%;
}








#inicio p {
	font-size: 2em;
	line-height: 0.7;
}

.promo-info-section-regalos{
	padding: 0;
	position: relative;
	background-color: var(--dulcesol-grey-200);
	color: var(--tph-negro);
    margin-top: -1rem;
}
.promo-big-title {
	font-family: var(--tph-font-subtitulos);
	font-size: 3rem;
	padding: 1rem;
	color: var(--tph-negro);
	text-transform: uppercase;
	font-weight: bold;
	line-height: 1;
}

.promo-big-title .text-red {
	color: var(--dulcesol-red);
	margin-top: 0.5rem;
}
.promo-participaciones {
	padding: 2rem 1rem;
}
.celebramos{
	font-size: 2.2rem;
    display: var(--tph-negro);
    line-height: 1;
}
.promo-participaciones-title {
	font-family: var(--tph-font-titulos);
	font-size: 4rem;
	color: var(--dulcesol-red);
	text-transform: uppercase;
	font-weight: bold;
	line-height: 1;
	margin-top: 2rem;
	padding-left: 10%;
}


/* Efecto shimmer para títulos destacados */
.shimmer-text {
	background: linear-gradient(
		90deg,
		var(--dulcesol-red) 0%,
		var(--dulcesol-dark-red) 40%,
		#ff6b6b 50%,
		var(--dulcesol-dark-red) 60%,
		var(--dulcesol-red) 100%
	);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0%, 100% { background-position: 100% 0; }
	50% { background-position: -100% 0; }
}

@media (prefers-reduced-motion: reduce) {
	.shimmer-text {
		-webkit-text-fill-color: var(--dulcesol-red);
		animation: none;
	}
}

.logo-dorado-small {
	max-width: 300px;
	width: 100%;
}
/********************************************************************************** mecánica  *******************************************************************************/

#mecanica {
	background-color: var(--dulcesol-grey-200);
	padding: 4rem 0;
	position: relative;
}

#mecanica::after {
        content: '';
    position: absolute;
    bottom: -61px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 89px;
    background-color: var(--tph-negro);
    border-radius: 50%;
    z-index: 1;
}

.mecanica-step {
	padding: 2rem 1rem;
}

.mecanica-step-up {
	margin-bottom: 4rem;
}

.mecanica-step-down {
	margin-top: 4rem;
}

/* Hover dinámico en pasos mecánica */
.mecanica-step .mecanica-img {
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.mecanica-step:hover .mecanica-img {
	transform: scale(1.05) translateY(-8px);
	filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.15));
}

.mecanica-step .mecanica-text {
	transition: transform 0.4s ease;
}

.mecanica-step:hover .mecanica-text {
	transform: translateY(-4px);
}

.mecanica-img {
	max-width: 250px;
	width: 100%;
}
.mecanica-titulo {
	font-family: var(--tph-font-titulos);
	font-size: 5rem;
	color: var(--dulcesol-red);
	line-height: 1;
	margin: 0;
}
.mecanica-subtitulo {
	font-family: var(--tph-font-subtitulos);
	font-size: 1.5rem;
	color: var(--dulcesol-brown);
	line-height: 1;
	margin: 0;
}
.mecanica-text {
	font-family: var(--tph-font-body);
	font-size: 1.5rem;
	color: var(--tph-negro);
	line-height: 1;
	margin: 0;
}


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

/********************************************************************************** recetas  *******************************************************************************/

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

/********************************************************************************** regalo  *******************************************************************************/

.rc-heading {
	text-transform: uppercase;
	letter-spacing: .6px;
}

.rc-subheading {
	opacity: .9;
}

.rc-icon {
	width: 40px;
	height: auto;
	object-fit: contain;
}

.rc-media {
	max-width: 460px;
}




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


#countdown {
	font-family: var(--tph-font-subtitulos);
	font-size: 2rem;
	color: var(--tph-cuenta-atras-title);
}

#countdown .countdown-title {
	font-size: 3rem;
	font-weight: bold;
	color: var(--tph-cuenta-atras-title);
	text-transform: uppercase;
	margin-bottom: 1rem;
}

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

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

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

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

#countdown text {
	fill: none;
	stroke: black;
	stroke-width: 6px;
	stroke-linejoin: round;
	animation: 2s pulsate infinite;
}

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



/********************************************************************************** participa  *******************************************************************************/
#participa{
	background-color: var(--tph-negro);
	color: var(--tph-blanco);
	 z-index: 2;
	 padding-top: 5rem;
	 padding-bottom: 5rem;
	 position: relative;
}
#participa::after {
        content: '';
    position: absolute;
    bottom: -61px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 89px;
    background-color: var(--tph-blanco);
    border-radius: 50%;
    z-index: 1;
}

.participa-titulo {
	font-family: var(--tph-font-titulos);
	font-size: 5rem;
	line-height: 1;
	margin: 0;
}
.participa-subtitulo {
	font-family: var(--tph-font-subtitulos);
	font-size: 1.5rem;
	line-height: 1;
	margin: 0;
}
form #formReg_l {
	font-size: 1rem;

}

form#formReg_l label {
	display: block;
	color: var(--tph-form-label);
	font-family: var(--tph-font-subtitulos);
	font-size: 1em;
	font-weight: bold;
}

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

	/* border-color: black; */
}

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

form#formReg_l .form-select {
	color: var(--tph-form-input);
	background-color: var(--tph-form-bg);
	font-family: var(--tph-font-body);
	border-radius: 5rem;
	font-size: 1rem;
	/* border-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-blanco);
}

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(--dulcesol-red);
	border-color: var(--dulcesol-red);
}

.msgError {
	margin-bottom: 0.5rem;
	margin-top: 0.5rem;
	padding: 0.25rem;
}

/********************************************************************************** Regalos Carousel  *******************************************************************************/

.regalos-section {
	background-color: var(--tph-blanco);
	padding: 5rem 0;
}

.regalos-titulo {
	font-family: var(--tph-font-titulos);
	font-size: 3rem;
	color: var(--tph-negro);
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 1rem;
}

.regalos-subtitulo {
	font-family: var(--tph-font-body);
	font-size: 1.2rem;
	color: var(--tph-negro);
	line-height: 1.6;
	margin-bottom: 2rem;
}

.carousel-controls-wrapper {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 2rem;
}

.carousel-controls {
	display: flex;
	gap: 0.5rem;
}

.carousel-control-custom {
	width: auto;
	height: auto;
	background-color: var(--tph-negro);
	border: none;
	border-radius: 8px;
	padding: 0.50rem;
	color: var(--tph-blanco);
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	cursor: pointer;
}

.carousel-control-custom:hover {
	background-color: var(--dulcesol-yellow);
	color: var(--tph-negro);
	transform: scale(1.1);
}

.carousel-control-custom:active {
	transform: scale(0.95);
}

#regalosCarousel .carousel-inner {
	padding: 1rem 0;
}

#regalosCarousel .carousel-item {
	transition: transform 0.6s ease-in-out;
}

.regalo-img {
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
	cursor: pointer;
}

.regalo-img:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive: Menos imágenes en pantallas pequeñas */
@media (max-width: 991px) {
	.regalos-titulo {
		font-size: 2rem;
	}
	
	.regalos-subtitulo {
		font-size: 1rem;
	}
}
/********************************************************************************** contacto  *******************************************************************************/

.contacto-section {
	background-color: var(--tph-blanco);
	padding: 5rem 0;
}

.contacto-titulo {
	font-family: var(--tph-font-titulos);
	font-size: 3rem;
	color: var(--dulcesol-red);
	text-transform: uppercase;
	font-weight: bold;
}

.contacto-link {
	position: relative;
	display: inline-block;
}

.contacto-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--dulcesol-red);
	transition: width 0.4s ease;
}

.contacto-link:hover::after {
	width: 100%;
}

.contacto-subtitulo {
	font-family: var(--tph-font-body);
	font-size: 1.2rem;
	color: var(--dulcesol-grey-800);
	line-height: 1.6;
}

.contacto-info {
	margin: 2rem 0;
}

.contacto-tel,
.contacto-email,
.contacto-horario {
	font-family: var(--tph-font-body);
	font-size: 1.3rem;
	color: var(--dulcesol-grey-800);
}

.contacto-link {
	color: var(--dulcesol-grey-800);
	transition: color 0.3s ease;
	font-size: 2rem;
}

.contacto-link:hover {
	color: var(--dulcesol-red);
}

.contacto-logo {
	display: inline-block;
}

/* Estilos antiguos para compatibilidad */
#contacto {
	color: white;
}



#contacto .email_contacto {
	font-size: 1.3rem;
	text-decoration: none !important;
}

#contacto .tel_promo {
	font-size: 2.5rem;
	text-decoration: none !important;
}

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

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

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

footer {
	background-color: var(--tph-negro);
	position: sticky;
	font-family: var(--tph-font-body);
	z-index: 1000;
}

footer ul {
	list-style: none;
}

footer a {
	color: white;
	text-decoration: none;
	font-size: 1.2rem;
	transition: 0.3s color;
}

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

footer .small {
	color: white;
	font-size: 0.8rem;
}

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

.logoBonduellPie {
	max-width: 8rem;
}

.pull-right {
	float: right;
}

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



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

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

/* Móvil - Una sola ola */
@media (max-width: 990px) {
	.promo-info-section::before {
		clip-path: polygon(
			0% 15%,
					
			100% 100%,
			0% 100%
		);
	}
}

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

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

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


@media (min-width: 768px) {
	.promo-participaciones-title {
	font-size: 5rem;
	padding-left: 30%;
}
}

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

@media (min-width: 992px) {

	.promo-big-title {
    font-size: 2.5rem;
	}
}

@media (min-width: 1024px) {
	.promo-big-title {
    font-size: 3rem;
	}
	.promo-participaciones-title {
	font-size: 4rem;
	padding-left: 20%;
}
}

@media (min-width: 1200px) {
	.promo-big-title {
    font-size: 5rem;
	}
	.promo-participaciones-title {
	font-size: 4rem;
	padding-left: 30%;
}
}

@media (min-width: 1400px) {
	.promo-participaciones-title {
	font-size: 4rem;
	padding-left: 40%;
}
}

@media (min-width: 1600px) {
	#inicio .hero-title {
		font-size: 3rem;
	}
	.promo-participaciones-title {
	font-size: 5rem;
	padding-left: 40%;
}

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


}

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

/********************************************************************************** Bases Legales (bbll-*) *******************************************************************************/

/* Contenedor principal del documento legal */
.bbll-document {
	max-width: 1200px;
	margin: 3rem auto;
	padding: 2rem;
	background: var(--tph-blanco);
	font-family: var(--tph-font-body);
	line-height: 1.2;
	color: var(--tph-negro);
}

/* Header principal */
.bbll-main-header {
	text-align: center;
	padding: 2rem 0;
	border-bottom: 3px solid var(--dulcesol-red);
	margin-bottom: 2rem;
}

/* Índice navegable */
.bbll-index-nav {
	background: var(--dulcesol-grey-200);
	padding: 2rem;
	margin-bottom: 3rem;
	border-radius: 8px;
	border-left: 4px solid var(--dulcesol-red);
}

.bbll-index-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 0.75rem;
}

.bbll-index-list li {
	margin: 0;
}

.bbll-index-list a {
	color: var(--tph-negro);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: block;
	padding: 0.5rem 0.75rem;
	border-radius: 4px;
}

.bbll-index-list a:hover {
	background: var(--tph-blanco);
	color: var(--dulcesol-red);
	padding-left: 1.25rem;
}

/* Título principal H1 */
.bbll-main-title {
	font-family: var(--tph-font-titulos);
	font-size: 2.5rem;
	color: var(--dulcesol-red);
	margin: 0;
	text-transform: uppercase;
	font-weight: 900;
}

.bbll-main-title em {
	color: var(--dulcesol-brown);
	font-style: normal;
	display: block;
	margin-top: 0.5rem;
}

/* Secciones del artículo */
.bbll-article-section {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--dulcesol-grey-200);
}

.bbll-article-section:last-of-type {
	border-bottom: none;
}

/* Títulos de sección H2 */
.bbll-section-title {
	font-family: var(--tph-font-titulos);
	font-size: 1.5rem;
	color: var(--dulcesol-red);
	margin: 2rem 0 1.5rem 0;
	font-weight: 700;
	text-transform: uppercase;
}

/* Subtítulos H3 */
.bbll-subsection-title {
	font-family: var(--tph-font-titulos);
	font-size: 1.2rem;
	color: var(--tph-negro);
	margin: 1.5rem 0 1rem 0;
	font-weight: 600;
}

/* Párrafos */
.bbll-paragraph {
	margin-bottom: 1rem;
	color: var(--tph-negro);
	line-height: 1;
}

.bbll-paragraph strong {
	color: var(--dulcesol-red);
	font-weight: 700;
}

/* Listas */
.bbll-unordered-list,
.bbll-ordered-list {
	margin: 1rem 0 1rem 2rem;
	padding: 0;
}

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

.bbll-unordered-list li::marker {
	color: var(--dulcesol-red);
}

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

/* Contenedor de tablas */
.bbll-table-container {
	margin: 1.5rem 0;
	overflow-x: auto;
}

/* Tablas de datos */
.bbll-data-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--tph-blanco);
	border: 1px solid var(--dulcesol-grey-200);
	border-radius: 8px;
	overflow: hidden;
}

.bbll-data-table thead {
	background: var(--dulcesol-red);
	color: var(--tph-blanco);
}

.bbll-data-table th {
	padding: 1rem;
	text-align: left;
	font-weight: 700;
	font-family: var(--tph-font-titulos);
	text-transform: uppercase;
}

.bbll-data-table td {
	padding: 1rem;
	border-bottom: 1px solid var(--dulcesol-grey-200);
}

.bbll-data-table tbody tr:last-child td {
	border-bottom: none;
}

.bbll-data-table tbody tr:hover {
	background: var(--dulcesol-grey-200);
	transition: background 0.3s ease;
}

/* Enlaces dentro del documento */
.bbll-document a {
	color: var(--dulcesol-red);
	text-decoration: underline;
	transition: color 0.3s ease;
}

.bbll-document a:hover {
	color: var(--dulcesol-yellow);
}

/* Responsive */
@media (max-width: 767px) {
	.bbll-document {
		padding: 1rem;
		margin: 1rem;
	}

	.bbll-main-title {
		font-size: 1.75rem;
	}

	.bbll-section-title {
		font-size: 1.25rem;
	}

	.bbll-data-table {
		font-size: 0.9rem;
	}

	.bbll-data-table th,
	.bbll-data-table td {
		padding: 0.75rem 0.5rem;
	}

	.bbll-index-list {
		grid-template-columns: 1fr;
	}
}