/* Estilos generales para el cuerpo y los encabezados */

/* Estilos generales para el cuerpo y los encabezados */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: #000 !important;
  user-select: none;
}

input::placeholder {
  white-space: pre-line;

  word-wrap: break-word; /* Evita el desbordamiento de palabras */
}

/***TEXTO PRINCIPAL INICIO*/
/*****************************/
.slogan {
  text-align: center;
  color: brown !important;
  font-weight: 700;
  font-size: 36px;
}
/*@media titilo slogan*/
@media (max-width: 375px) {
  .slogan {
    font-size: 26px;
    margin-top: 20px;
  }
}
@media (min-width: 376px) and (max-width: 1024px) {
  .slogan {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
#logo container-header
--------------------------------------------------------------*/
.logo-container-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-header {
  width: 150px;
  margin-bottom: 10px;
  
}

/*******idiomas**********/

.langPages {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.langPages a {
  font-size: 10px;
  padding: 5px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.langPages img {
  width: 25px;
  margin-right: 5px;
}

/*************enlaces*************/

.credits a {
  color: #ffc451;
  text-decoration: none;
  transition: color 0.3s;
}

.credits a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.4s;
  border: 2px solid #ffc451;
}

.iconify[data-icon="bi:arrow-up-short"] {
  color: #ffc451;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*********************/
/*texto encabezado*/
/**********************/

.tardeo-header {
  font-family: Arial, sans-serif;
    font-weight: 800;
    font-size: 3rem;
    text-align: center;
    background: linear-gradient(45deg, #c80000, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* mejor soporte cross-browser */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.35);
    margin: 0 8px;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 768px) {
  .tardeo-header {
    font-size: 2rem;
    padding: 10px;
  }
}
/*************locales tardeo************/
/******************************************/
/*********************************************/

.tardeo {
  font-family: Arial, sans-serif;
  font-weight: 800;
  font-size: 3rem;
  text-align: center;
  background: linear-gradient(45deg, #c80000, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* mejor soporte cross-browser */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.35);
  margin: 0 8px;
  display: inline-block;
  vertical-align: middle;
}

.tardeo-emoji {
  font-size: 3.2rem;
  line-height: 1;
  vertical-align: middle;
  /* ✅ se alinea con el texto */
}

@media (max-width: 768px) {
  .tardeo {
    font-size: 2.2rem;
    margin: 0 4px;
  }

  .tardeo-emoji {
    font-size: 2.2rem;
  }
}
/******************************************/
/*****************************************/
/****** search *****/
/********************************************/
/********************************************/

.search-section {
  background-image: url("/img/tardeo-fondo.jpg");
  background-position: center -350px; /* Mueve la imagen hacia arriba */
  background-size: cover; /* Asegura que la imagen cubra toda la sección */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  background-attachment: fixed; /* Deja la imagen fija al hacer scroll */
}

.search-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #313131;
  opacity: 0.5;
}

.my-custom-container {
  background-color: rgba(
    179,
    224,
    255,
    0.6
  ); /* Azul cielo muy suave con total transparencia */
  padding: 20px;
  border-radius: 6px;
}

/****tardeo club*****/
.container-custom {
  text-align: center;
  margin: 50px;
}

.container-custom .btn-action {
  background-color: brown;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s;
}

.container-custom .btn-action:hover {
  background-color: orange;
  color: black;
}



/*************texto corrido***********/
.marquee-container {
  width: 50%;
  overflow: hidden;
  background: #111;
  /* Fondo negro */
  padding: 10px 0;
  color: #fff;
  /* Texto blanco */
  white-space: nowrap;
  position: relative;
  border-radius: 8px;
  /* Bordes redondeados */
}

.marquee-container-index {
 
  width: 100%;
  overflow: hidden;
  background: #111;
  /* Fondo negro */
  padding: 10px 0;
  color: #fff;
  /* Texto blanco */
  white-space: nowrap;



  /* Bordes redondeados */
}

.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 35s linear infinite;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.marquee-text i {
  margin: 0 5px;
  /* Espaciado entre iconos y texto */
  font-size: 1.5rem;
  /* TamaÃ±o de los iconos */
  color: #ff5733;
  /* Color atractivo para los iconos */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}





 /*****whatasp pupupp mensaje usuarios targeta*/

 .whatsapp-popup {
   position: absolute;
   bottom: 135px;
   /* lo sube bastante, ajusta si quieres menos */
   left: 50%;
   /* centrado horizontal */
   transform: translateX(-50%);
   background-color: rgba(255, 255, 255, 0.9);
   /* blanco casi opaco */
   color: #222;
   /* texto negro oscuro */
   padding: 4px 8px;
   border-radius: 6px;
   box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
   font-size: 0.65rem;
   max-width: 220px;
   z-index: 1000;
   display: none;
   white-space: pre-line;
   line-height: 1.1;
   font-weight: 400;
   font-family: Arial, sans-serif;
   text-align: center;
   user-select: none;
 }

 .whatsapp-popup .whatsapp-actions {
   margin-top: 8px;
   display: flex;
   justify-content: center;
   gap: 10px;
 }

 .whatsapp-popup .btn {
   padding: 4px 10px;
   font-size: 0.7rem;
   cursor: pointer;
 }

 .whatsapp-message {
   white-space: pre-line;
 }
