/**
* Template Name: Selecao
* Template URL: https://bootstrapmade.com/selecao-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
* Updated: 14052025 nestor 9:00
* Updated: 14052025 brayan
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Ubuntu";
  --heading-font: "Ubuntu'",  sans-serif;
  --nav-font: "Ubuntu'",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2a2c39; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ef6603; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ef6603; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #060606; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ef6603; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2a2c39;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}


/* Estilos generales en tu app.css o styles.css */
@media print {
  header, footer, nav, .imprimir, .no-print {
    display: none !important;
  }

  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  @page {
    size: A4;
    margin: 10mm 15mm;
  }

  .certificado-contenido {
    width: 100%;
    font-size: 9pt;
    line-height: 1.2;
    color: #000;

    /* zoom: 0.2; */
  }
}

.trivia-rating-input {
  /* 1) Quitar apariencia nativa */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* 2) Dibujar el radio “vacío” */
  width: 1em;
  height: 1em;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

/* 3) Dibujar el punto interior solo cuando esté chequeado */
.trivia-rating-input:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.1em;
  height: 1.1em;
  background-color: #A5D159; /* punto interior verde */
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* 4) Borde verde cuando esté chequeado */
.trivia-rating-input:checked {
  border-color: #A5D159 !important;
}


a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #000, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
/* Base: nada especial */


/* Solo en desktop (≥1200px) centramos y anulamos transform/transition */
@media (min-width: 1200px) {
  .swiper.init-swiper .swiper-wrapper.justify-center {
    display: flex !important;
    justify-content: center !important;
    transform: none !important;
    transition: none !important;
    margin: 0 auto !important;
  }
}



/* Centra y fija al 70 % tanto videos locales como iframes YouTube dentro de .event-video */
.event-video {
  text-align: center;    /* Centra contenido en línea */
  margin: 2rem 0;
}

.event-video video,
.event-video iframe,
.event-video .ratio {
  max-height: 380px;
  width: 50% ; /* Fuerza el ancho al 70% */
  max-width: 100%;
  display: block;        /* Para que margin auto funcione */
  margin: 0 auto;        /* Centra el bloque */
}

.spcvideoevent {
  height: 13px;
  width: 100%;      /* si quieres que abarque todo el ancho */
  display: block;   /* asegura que ocupe su propio bloque */
  margin: 0;        /* sin márgenes extras */
}


/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #0a16266e;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: #0a1626b0;
  padding: 0px 0 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(42, 44, 57, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */

@media screen and (min-width: 1600px) and (max-width: 1900px) {
  .cuenta {
    /* aquí pones el margen fijo o relativo que mejor quepa */
    margin-right: 7vw !important;
  }
}
@media screen and (min-width: 1900px) and (max-width: 26000px) {
  .cuenta {
    /* aquí pones el margen fijo o relativo que mejor quepa */
    margin-right: 10vw !important;
  }
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0 0px 0px 0px;
  }

/* agregado por brayan */
  .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    /* quitas la línea height: 170px; */
    height: auto;          /* ahora se ajusta al contenido */
    min-height: 170px;     /* opcional: no baje de 170px */
  }

  /* Aplica sólo cuando son pocos slides y la pantalla es ancha */

    .swiper-wrapper.justify-center {
      transform: none !important;
      transition: none !important;
      margin: 0 auto;          /* centrar horizontalmente */
    }


  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    margin-left: 5px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 15px 20px 5px 0;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #a5d159;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #0A1626;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);

  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .navmenu .dropdown ul a {
    padding: 8px 18px;
    font-size: 15px;
    text-transform: none;
    color: #fff;
    border-bottom: 1px solid #777777;
    border-radius: 0pc;
  }



}


  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: transparent;
    color: #A5D159;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .check {
    width: 70%;
    margin-top: -3em;
  }


  /* Estilos del pop-up */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 500px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}


/* Navmenu - Mobile */
/*remplazado brayan
@media (max-width: 1199px) {*/
@media (max-width: 1200px) {

  /*  menu hamburgeza*/
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .spac {
    margin-top: 7em;
  }

  /*agregado por brayan*/
  .container-fluid.container-xl.position-relative.d-flex.align-items-center.justify-content-center {
    float: left;
    width: 20%;
    margin-top: -3em;
  }

  .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    height: 0px !important;
  }
  .header {
    --background-color: #0a16266e;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: #0a1626b0;
    padding: 0px 0 0px 0;
    transition: all 0.5s;
    z-index: 997;
}
.calendar-header select {
  width: 100%;
  padding: 3px;
  margin-bottom: 20px;
}
/**/
  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 50px 80px 20px 0px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #0A1626;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    color: #fff;
  }

  .navmenu a, .navmenu a:focus {
    color: #fff;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 1px solid #737373;
    width: 90%;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 0px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }



}



/*--------------------------------------------------------------
# Css Nestor
--------------------------------------------------------------*/

a.cole {
  color: #000;
}

img.logo-c {
  width: 55%;
  padding-top: 15px;
}

p.logo-r {
  text-align: right;
}

.bg-logo {
  background: #0A1626;
  padding: 0;
  margin: 0;
}

p.user-l {
  text-align: center;
}

img.usuario {
  width: 4%;
  margin-right: 10px;
  margin-top:2em;
  /*linea brayan*/

}

p.user-l {
  text-align: center;
}

.carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex
;
  align-items: center;
  justify-content: center;

  padding: 0;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 1;
  transition: opacity .15s ease;
}

.carousel-control-prev-icon {
  background-image: url(../img/club/flecha-1.png);
  background-repeat:no-repeat ;
  height: 50px;
    width: 35px;}

  .carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;

    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}


.carousel-control-next-icon {
  background-image: url(../img/club/flecha-2.png);
  background-repeat:no-repeat ;
  height: 50px;
    width: 35px;}


/* Ensure that the swiper container is relative for positioning */
.swiper {
  position: relative;
}

/* Style the navigation arrows */
.navigation-prev, .navigation-next {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  background-color: #ffffff00 ;/* Optional, for visibility */
  border: none;
  padding: 10px;
  color: white;
  font-size: 24px;
  z-index: 10;
}

/* Position the left arrow on the left side */
.navigation-prev {
  left: 10px;
}

/* Position the right arrow on the right side */
.navigation-next {
  right: 10px;
}

/* Center the bullets */
.swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  margin-top: 2em !important;
  position: relative;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 100;
  width: 100%;
}

/* Optional: style the bullets */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
}

.swiper-pagination-bullet-active {
  background-color: rgb(48, 48, 48);
}

p.ver {
  text-align: center;
  padding-top: 10px;
  font-size: 15px;
}

section.services-2.section.black.aos-init.aos-animate {
  background: #0A1626;
  padding: 40px 0px 40px 0px;
  margin-top: 7em;

}

img.iconos {
  width: 30%;
  margin: 0 auto;
  display: block;
}

p.text-icon {
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

p.text-icon:hover {
  color: #fff;
  font-size: 15px;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

img.iconos-2 {
  width: 35%;
  margin: 0 auto;
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
}

img.iconos-3 {
  width: 28%;
  margin: 0 auto;
  display: block;
  padding-top: 0px;
  padding-bottom: 5px;
}

img.iconos-4 {
  width: 45%;
  margin: 0 auto;
  display: block;
  padding-top: 0px;
  padding-bottom: 5px;
}

img.iconos-4 {
  width: 28%;
  margin: 0 auto;
  display: block;
  padding-top: 0px;
  padding-bottom: 5px;
}

img.iconos-6 {
  width: 45%;
    margin: 0 auto;
    display: block;
    padding-top: 9px;
    padding-bottom: 5px;
}

img.iconos-5 {
  width: 25%;
  margin: 0 auto;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
}

img.iconos-7 {
  margin: 0 auto;
  display: block;
  width: 38%;
  margin-top: 7px;
  padding-bottom: 3px;
}

img.iconos-8 {
  width: 28%;
    margin: 0 auto;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
}

img.iconos-9 {
  width: 15%;
  margin: 0 auto;
  display: block;
  padding-top: 7px;
  padding-bottom: 0px;
}


img.iconos-10 {
  width: 20%;
    margin: 0 auto;
    display: block;
    padding-top: 8px;
    padding-bottom: 2px;
}

img.iconos-11 {
  width: 26%;
  margin: 0 auto;
  display: block;
  padding-top: 5px;
  padding-bottom: 2px;

}

.carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex
;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: .5;
  transition: opacity .15s ease;
}

img.iconos-12 {
  width: 27%;
  margin: 0 auto;
  display: block;
  padding-top: 11px;
  padding-bottom: 0px;
}


p.explots {
  color: #fff;
  font-weight: bold;
  font-size: 2em;
  padding: 35px 150px 0 150px;
  margin-top: 0em;
  text-transform: uppercase;
  line-height: 40px;
}

.img-estrellas {
  width: 80%;
  margin-left: 4em;
  margin-top:3em;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7); /* Fondo semi-transparente */

  padding: 10px;
  z-index: 10;
  font-size: 2rem; /* Tamaño de las flechas */
}

.swiper-button-next {
  right: 10px; /* Ubica la flecha derecha */
  background-image: url(../img/club/flecha-2.png);
    background-repeat: no-repeat;
    height: 50px;
    width: 35px;
}

.swiper-button-prev {
  left: 10px; /* Ubica la flecha izquierda */
  background-image: url(../img/club/flecha-1.png);
    background-repeat: no-repeat;
    height: 50px;
    width: 35px;
}


.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  height: 50px;
  width: 35px;
  margin-top: calc(0px -(var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex
;
  align-items: center;
  justify-content: center;
  color: #ffffff00;
}

p.verma {
  font-size: 18px !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  text-align: right;
  padding-right: 1.5em;
  padding-top: 10px;
}

img.img-s {
  border-radius: 10px;
}

img.img-fluid.img-s:hover {
  background: red;
  position: absolute;
  width: 100%;
}

img.img-fluid.img-s {
  width: 100%;
}

.position-relative {
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;

  width: 95%;
    margin: 0 auto;
}

img.img-fluid.bordeimg {
  width: 100%;
  border-radius: 10px;
  margin-top: 1em;
}

.position-relative:hover .overlay {
  opacity: 1; /* Aparece el overlay cuando se pasa el mouse */
}

.icon {
  font-size: 2rem;
  color: white;
  margin-left: 15px;
  margin-top: 15px;
}

p.mostrar {
  color: #fff;
  line-height: 18px;
  text-align: center;
  display: grid
;
  font-size: 19px;
  font-weight: bold;
  padding-bottom: 11px;
}


.bgfondo-1::before{
  transition: all .5s ease-in;
  background-color: rgb(0, 194, 129);
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  cursor: pointer;
}
.bgfondo-1:hover::before{
  opacity: .6 ;
}


p.club-blanco {
  color: #fff;
  border-bottom: 0.1px solid #ffffff;
}

p.club-blanco:hover {
  color: #fff;
  border-bottom: 0.1px solid #ffffff;
  font-size: 18px;
}

img.ico-2 {
  width: 40px;
  margin-right: 1em;
  padding-bottom: 5px;
  height: 40px;
}

img.ico-3 {
  width: 30px;
  margin-right: 1em;
  padding-bottom: 8px;
}

img.ico-4 {
  width: 30px;
  margin-right: 1em;
  padding-bottom: 8px;
}

p.tex-admin {
  text-align: right;
  font-weight: 900!important;
  font-family: sans-serif;
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: 0px solid #b7b7b7;
  border-radius: 0px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  border: 1px solid #000;
}

label.form-check-label.miche {
  color: #000;
}
label.form-check-labell {
  color: #000 !important;
}

.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  flex-shrink: 0;
  width: 1.1em;
  height: 1.1em;
  margin-top: .25em;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #929292;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
  border-radius: 0px !important;
}

p.explots-2 {
  color: #a5d159;
  font-weight: bold;
  font-size: 2.2em;
  position: relative;
  padding: 38px 100px 0 100px;
  text-transform: uppercase;
  line-height: 40px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

section#services-4 {
  background: #F8F8F8;
}

img.img-fluid {
  width: 100%;
}

p.clubverde {
  background: #0a1626;
  padding: 10px;
  color: #a5d159;
  font-size: 18px;
  margin: 0;
  text-transform: uppercase;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}


 /* Contenedor principal */
 .clubverde {
  background-color: #4CAF50;
  color: white;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  width: 100%;
}

/* Contenedor de texto adicional */
/* .contenido {
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
} */

.contenido {
  padding: 10px;
  font-size: 14px;
}




p.parrafo {
  font-style: italic;
  font-size: 16px;
}

p.clubverde-2 {
  background: #0a1626;
  padding: 10px;
  color: #a5d159;
  font-size: 20px;
  margin: 0;
  text-transform: uppercase;
  line-height: 19px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

textarea#comment {
  height: 112px;
  margin-top: 15px;
  margin-bottom: 1em;
  border: 1px solid #000;;
}

input.form-control.campo {
  margin-bottom: 3.6em;
    margin-top: 0px;
    border: 1px solid #000;
}

button.btn.btn-primary.enviar {
  float: right;
  background: #fff;
  color: #000;
  border: 1px solid;
  border-radius: 0;
  padding: 5px 20px 5px 20px;
  text-transform: uppercase;
}


button.btn.btn-primary.enviar:hover {
  float: right;
  background: #0A1626;
  color: #000;
  border: 0;
  border-radius: 0;
  padding: 5px 20px 5px 20px;
  color: #a5d159;
  text-transform: uppercase;
}

input#flexCheckDefault {
  margin-top: 1em;
}

label.form-check-label {
  margin-top: 12px;
}

img.logo-footer {
  width: 35%;
}

 /* Cambiar el color del indicador activo */
 .carousel-indicators .active {
  background-color: #000!important; /* El color que desees */
}

/* Cambiar el color de los indicadores no activos */
.carousel-indicators button {
  background-color: rgb(174, 174, 174)!important; /* El color que desees para los inactivos */
}

img.img-fluid.border {
  border-radius: 10px;
}


p.politicas {
  color: #555555;
  font-weight: bold!important;
  font-family: sans-serif!important;
  padding-bottom: 8px!important;
  margin: 0!important;
  font-size: 13px !important;
  margin-top:15px!important;
  font-style: normal!important;
}

p.copy {
  font-size: 11px !important;
  font-style: normal !important;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px !important;
}

p.elclub {
  font-style: normal !important;
  font-weight: bold;
  font-size: 18px;
  margin: 0 !important;
  padding-bottom: 1em !important;
  font-family: sans-serif;
}

span.siguenos {
  font-size: 14px;
  font-weight: 200;
}

img.redes {
  width: 4%;
  margin-right: 11px;
}

p.parrafos-2 {
  background: #000;
  color: #fff;
  font-size: 15px;
  padding: 20px 10px 60px 10px;
  font-weight: 500;
  height: 200px;
}

p.numeros {
  margin: 0;
  padding: 0;
  font-size: 3.5em;
  font-weight: bold;
  vertical-align: middle;
  position: absolute;
  margin-top: -65px;
  color: #fff;
  text-align: right;
  width: 100%;
  padding-right: 18px;
  text-shadow: 4px 4px 2px rgb(57 57 57 / 87%);
}

.caja-2{
  height: 170px;
}

.col-md-8.caja2 {
  margin: 0;
  padding-top: 20px;
}

.col-md-8.caja3 {
  margin-top: -4em;
  padding: 0;
}

img.d-block.w-100 {
  width: 100% !important;
}

p.vive {
  text-align: left;
  font-size: 4em;
  font-weight: bold;
  color: #DBF226;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}


p.momentos {
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: 2.5em;
  font-weight: bold;
  width: 50%;
  margin-top: -25px;
  line-height: 38px;
  font-family: sans-serif;
  margin-bottom: 10px;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 0;
  color: #fff;
  text-align: center;
}

p.disfruta {
  width: 18%;
  text-align: center;
  border: 1px solid #fff;
  padding: 5px;
  color: #daf123;
  font-weight: bold;
  text-shadow: 1px 1px #1a1a1a;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 12px;
  height: 12px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity .6s ease;
  border-radius: 50%;
}



.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex
;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: -3rem;
  margin-left: 15%;
}

.navigation-prev {
  left: 10px;
  background-image: url(../img/club/flecha-1.png);
  background-repeat:no-repeat ;
  height: 50px;
    width: 35px;
}
.navigation-next {
  right: 10px;
  background-image: url(../img/club/flecha-2.png);
  background-repeat:no-repeat ;
  height: 50px;
  width: 35px;
}

.bi-arrow-left-short::before {
  content: "\f12c";
  display:none
}

.bi-arrow-right-short::before {
  content: "\f135";
  display:none
}
.swiper {
  position: relative;
  padding: 0px 22px 0px 22px;
}


/* Estilos del pop-up */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 800px;
  position: relative; /* Necesario para posicionar el botón de cierre */
}

/* Botón de cierre dentro del contenido del pop-up */
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
}

/* Estilos para el título y la descripción */
#popup h2 {
  font-size: 24px;
  color: #333;
}

#popup p {
  font-size: 16px;
  color: #666;
}

/* Sección del Pop-Up */
.popup-section {
  display: none; /* Ocultamos todas las secciones inicialmente */
}

/* Estilo opcional para el contenido dentro de cada sección */
#popup h2 {
  font-size: 24px;
  color: #333;
}

#popup p {
  font-size: 16px;
  color: #666;
}

b, strong {
  font-weight: bolder;
  font-weight: bold;
  font-family: sans-serif;
}

h2.titulo-pop {
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 2em;
}

.espacio {
  height: 100px;
}

p.pregunta {
  font-weight: bold;
  font-family: sans-serif;
  margin: 0;
  color: #000;
  opacity: 1;
}

span.verde {
  color: #000000;
  font-weight: bold;
  font-family: sans-serif;
}

p.respuesta {
  margin: 0;
}

div#popup-4 {
  height: 600px;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100%;
}

img.logo-pop {
  width: 65%;
  float: right;
}

.popup-close {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 35px;
  cursor: pointer;
}

p.sus {
  width: 60%;
  float: left;
}

button.suscrib-btn {
  background: #0A1626;
  border: 0;
  padding: 5px;
  width: 37%;
  color: #a5d159;
}

/* Personaliza el título y la descripción */
#popup-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

#popup-description {
  font-size: 16px;
  color: #666;
}

/* Sección del Pop-Up */
.popup-section {
  display: none; /* Ocultamos todas las secciones inicialmente */
}

#popup h2 {
  font-size: 24px;
  color: #333;
}

#popup p {
  font-size: 16px;
  color: #666;
}

.espacio-1 {
  margin-bottom: 12em;
}

.row.bg-gris {
  background: #f8f8f8;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(212, 212, 212, 1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(212, 212, 212, 1);
  box-shadow: 0px 0px 10px 0px rgba(212, 212, 212, 1);
  width: 100%;
  margin: 0 auto;
  border-radius: 0px 0px 10px 10px;
}

img.img-fluid.bordeimg1 {
  width: 100%;
  border-radius: 0px;
}

p.fw-bold.titulo {
  margin: 0;
  font-family: sans-serif;
  padding: 15px 0px 0px 0px;
  text-align: right;
}

p.descuento {
  font-size: 12px;
  text-align: right;
  margin-bottom: 3em;
}

button.verms {
  font-size: 11px;
  margin-bottom: 2em;
  text-align: center;
  background: #0A1626;
  color: #DBF227;
  padding: 5px;
  font-weight: bold;
  font-family: sans-serif;
  float: right;
}

p.descuento-2 {
  text-transform: math-auto!important;
}

button.verms:hover {
  font-size: 11px;
  margin-bottom: 2em;
  text-align: center;
  background: #fff;

  padding: 5px;
  font-weight: bold;
  font-family: sans-serif;
  float: right;
  background: #fff;
  color: #0c1525;

}

p.vermas {
  font-weight: bold;
  position: absolute;
  bottom: 0px;
}


p.titulo-acti {
  font-size: 1.4em;
  font-weight: 600;
  font-family: sans-serif;
  color: #2a2c39;
  padding-left: 25px;
}

section#services-3 {
  margin-top: 7em;
}


.container-2 {
  width: 800px;
  margin: 0 auto;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(212, 212, 212, 1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(212, 212, 212, 1);
  box-shadow: 0px 0px 10px 0px rgba(212, 212, 212, 1);
  margin-bottom: 4em;
  padding-bottom: 2em;
}
img.club-certificado {
  width: 50%;
}

.bg-club {
  background: #0A1626;
  padding: 25px 15px 25px 15px;
}


p.title-ventana {
  font-size: 2.5em;
    font-weight: bold;
    font-family: sans-serif;
    color: #000;
    padding: 20px 0px 0px 20px;
    margin-top: 1em;
}

p.porcentaje {
  font-size: 20px;
  padding: 65px 0px 0px 20px;
  color: #000;
}

b.tam {
  font-size: 2em;
}

.bg-descuento {
  background-image: url(../img/club/bg-cuadro.png);
  background-repeat: no-repeat;
  margin-top: -5em;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 750px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) -(var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.fw-bold {
  font-weight: 700 !important;
  font-family: sans-serif;
}

h4.nombre {
  text-align: left;
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: #0a1626;
}

img.logo-ce {
  width: 50%;
  padding-top: 15px;
  margin: 0 auto;
  display: block;
}

button.imprimir {
  background: #0a1626;
  color: #DBF227;
  border: 0;
  padding: 10px;
  margin-bottom: 2em;
  margin-top: 3em;
  font-size: 18px;
}



p.txt-club {
  font-size: 2.5em;
  margin: 0;
  padding: 0;
  font-weight: 100;
  font-family: sans-serif;
  color: #A5D159;
  margin-top: 1em;
  margin-bottom: 1em;
}

p.txt-clubcertificate {
  font-size: 2.5em;
  margin: 0;
  padding: 0;
  font-weight: 100;
  font-family: sans-serif;
  color: #A5D159;
  margin-top: 1em;
  margin-bottom: 1em;
}

p.fw-bold.promo {
  margin: 0;
  padding: 0;
}

p.promo-2 {
  margin: 0;
}

.line-2 {
  border-bottom: 1px solid #707070;
  margin-bottom: 3em;
  margin-top: 3em;
}


p.titulo-inicio {
  color: #DBF227;
  font-size: 30px;
  font-weight: bold;
  font-family: sans-serif;
  padding: 0;
  margin: 0;
}

p.gracias {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 30px;
  color: #0A1626;
}

p.equipo {
  text-align: right;
  padding-right: 30px;
  font-size: 17px;
  padding-top: 25px;
}

p.peque {
  text-align: center;
  font-size: 14px;
  padding: 30px 40px 30px 40px;
}

p.logofm {
  text-align: right;
  margin-right: 30px;
}

img.logo-sesion {
  width: 50%;
}

p.titulo-iniciof {
  color: #DBF227;
  font-size: 30px;
  font-weight: bold;
  font-family: sans-serif;
  padding: 0;
  margin: 0;
  text-align: center;
  line-height: 35px;
}

span.txt-lin {
  font-weight: 400;
}

p.constant {
  font-size: 27px;
  text-align: center;
  font-weight: 300;
  font-family: sans-serif;
  line-height: 32px;
}

p.verde-c {
  text-align: center;
  font-weight: bold;
  font-family: sans-serif;
  color: #A5D159;
  font-size: 25px;
  margin-top: 1em;
  margin-bottom: 2em;
}

p.text-center.me {
  font-size: 22px;
  margin-top: -20px;
}

p.fw-bold.grac {
  font-size: 20px;
  text-align: center;
}

.line-verde2 {
  border-bottom: 2px solid #a5d159;
  margin-bottom: 2em;
  margin-top: 2em;
}

p.constant2 {
  font-size: 27px;
  text-align: center;
  font-weight: 300;
  font-family: sans-serif;
  line-height: 32px;
  margin: 0;
  padding-top: 15px;
}

.bg-gris {
  background: #F8F8F8;
}

p.espa {
  margin: 0;
}

img.correcto {
  width: 10%;
}

img.restringido {
  margin: 0 auto;
  display: block;
  width: 30%;
  margin-top: 5em;
  margin-bottom: 5em;
}

img.restringido2 {
  margin: 0 auto;
  display: block;
  width: 30%;
  margin-top: 5em;
  margin-bottom: 1em;
}

button.salir {
  margin: 0 auto;
  display: block;
  background: #0a1626;
  color: #DBF227;
  border: 0;
  padding: 5px 30px 5px 30px;
  margin-top: 3em;
  margin-bottom: 2em;
}

.space {
  padding: 20px;
}

button.btn.btn-primary {
  background: #0A1626;
  border: 0;
  margin-bottom: 2em;
  border-radius: 0px;
  color: #a5d159;
}

img.evento {
  width: 6%;
}

p.verde {
  font-size: 22px;
  color: #A5D159;
  font-weight: 500;
  font-family: sans-serif;
  margin-top: 1em;
}

p.fw-bold.title {
  margin: 0;
  font-family: sans-serif;
  padding: 15px 0px 0px 13px;
  text-align: left;
  line-height: 18px;
}

.fecha{
  margin: 0;
  padding: 0px 0px 0px 13px
}

.description-1 {
  padding: 15px 0px 0px 13px;
  letter-spacing: -0.8px;
}

.ver-v {
  text-align: right;
}

.bg-griss {
  background: #f8f8f8;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(212, 212, 212, 1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(212, 212, 212, 1);
  box-shadow: 0px 0px 10px 0px rgba(212, 212, 212, 1);
  width: 100%;
  margin: 0 auto;
  border-radius: 0px 0px 10px 10px;
  height: 310px;
}
.abajo {
  position: absolute;
  bottom: 0;
  float: right;
  width: 100%;
  margin-left: -15px;
}

p.black {
  font-size: 22px;
  color: #000000;
  font-weight: 500;
  font-family: sans-serif;
  padding-top: 20px;
  padding-left: 25px;
}

.bg-azul {
  background: #e6e7e8;
  margin-top: 2em;
  margin-bottom: 1em;

}

span.blanco {
  color: #fff;
}

p.titulo-actii {
  font-size: 1.3em;
  font-weight: bold;
  font-family: sans-serif;
  color: #fff;
}

.espac {
  margin-bottom: 2em;
}

spn.momento {
  color: #000;
  font-weight: 500;
}

img.estrella {
  padding: 0px 20px 0px 20px;
}

.bg-gris1{
  background: #e6e7e8;
  margin-top: 2.5em;
}

p.negro {
  font-size: 22px;
  color: #000;
  font-weight: 300;
  font-family: sans-serif;
  border-bottom: 1px solid #000;
  margin-left: 25px;
  margin-top: 2.5em;
}


p.parrafo-refiere {
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: 27px;
  font-weight: bold;
  width: 50%;
  float: left;
  margin-top: -10px;
}

p.refiere {
  font-size: 28px;
  font-weight: 500;
  color: #000;
  font-family: sans-serif;
  margin: 0;
  padding-top: 3%;
}

.carousel-captiong {
  position: absolute;
  right: 15%;
  bottom: 7.25rem;
  left: 5%;
  padding-bottom: 0;
  color: #fff;
  text-align: center;
}

img.escudo {
  width: 100%;
  margin-top: -2em;
  z-index: 1;
  display: flow-root;
  position: relative;
}

.col-md-4.box-2 {
  width: 17%;
}

p.suscriptor {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  font-family: sans-serif;
  margin: 0;
  padding-top: 3%;
  padding-bottom: 1em;
  text-transform: uppercase;
}

p.referido-a {
  padding-top: 2em;
}


#myinput::placeholder {
  color: #ddd;
  opacity: 1; /* Firefox */
  font-size: 15px;
  font-weight: 500;
  font-family: sans-serif;
}
input#myinput {
  margin-bottom: 1em;
}


.col-md-12.center {
  display: flex;
  justify-content: center;
  margin-top: 3em;
  margin-bottom: 3em;
}

.box-c1 {
  margin-right: 1em;
}

button.btn.btn-primary.mb-2 {
  background: #0A1626;
  border: 0;
  margin-bottom: 0em;
  border-radius: 0px;
  color: #DBF227;
  padding: 5px 30px 5px 30px;
  font-size: 16px;
  margin-top: -5px;
}

p.prefieres {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  font-family: sans-serif;
}

p.refiere-2 {
  font-weight: 300;
  font-family: sans-serif;
  margin-top: 3em;
  font-size: 14px;
}

.publicidad {
  background: red;
  height: 100px;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 4em;
  margin-top: 4em;
}

p.p1.text-center {
  padding-top: 35px;
  font-size: 18px;
}

img.img-video {
  width: 50%;
  margin: 0 auto;
  display: block;
  padding-top: 10px;
  padding-bottom: 20px;
}

button.btn.btn-primary.mb-2.center {
  margin: 0 auto;
  display: block;
}

.espacio-2 {
  margin-top: 40px;
}

.v-d {
  font-size: 22px;
  color: #A5D159;
  font-weight: 500;
  font-family: sans-serif;
  margin-top: 1em;
}


video.video {
  margin: 0 auto;
  display: block;
  margin-bottom: 2em;
}

.main.gris {
  background: #edeeef;
}

p.descuento-2 {
  text-transform: math-auto !important;
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--heading-font);
  padding-left: 25px;
  margin-bottom: 1em;
}

.ver-mas {
  text-align: right;
  margin-top: -3em;
  margin-right: 22px;
  cursor: pointer;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
  z-index: -1;
}

.modal-backdrop.show {
  opacity: 1;
}

.modal-header.he {
  padding: 0px 10px;
  background: #dff257;
}

.modal-content {
  padding: 10px 0;
}

.modal-dialog {
  max-width: 90%; /* Ajusta el tamaño según sea necesario */
  margin: auto; /* Centrado automático */
}




.modal-content {
  height: auto; /* Ajusta la altura automáticamente en caso de que necesites más espacio */
}

.modal-header.titulo {
  padding: 0;
  background: #DBF227;
}

.col-md-4.c1 {
  width: 15%;
  border-right: 1px solid #938e8e;
}

.col-md-4.c2 {
  width: 10%;
  border-right: 1px solid #938e8e;
}

.semana {
  padding: 2px;
  margin: 0;
}

.dia {
  padding: 2px;
  margin: 0;
}

.col-md-4.c3 {
  width: 75%;
}


ul.dropdown-menu.show {
  margin-left: 12em !important;
}

button.btn.btn-secondary.dropdown-toggle.verde {
  border-radius: 50%;
  background: #dbf228;
  color: #000;
  border: 0;
  font-size: 9px;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  margin-right: 5px;
  margin-top: 3px;
}

.btn-group.dropend {
  margin-top: -30px;
  margin-left: -11px;
}
p.fecha-1 {
  margin: 0;
  padding: 0px 5px 0px 5px;
  background: #dbf228;
  font-size: 12px;
}

p.fw-bold.f1 {
  font-size: 12px;
  padding: 0px 0px 0px 5px;
}

ul.dropdown-menu.show {
  margin-left: 12em !important;
  height: 55px;
}



.calendar-container {
  width: 300px;
  margin: auto;
}
.calendar-header select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
}
.weekdays {
  display: flex;
  justify-content: space-between;
}
.weekday {
  width: 14%;
  text-align: center;
}
/* .day {
  width: 14%;
    height: auto;
    display: inline-block;
    text-align: center;
    border: 0px solid #ddd;
    margin: 0px;
    cursor: pointer;
    padding: 10px;
} */
.day img {
  width: 100%;
  height: auto;
}

/* Estilo para los modales */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 900px;
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

select#month-select {
  background: #0a1626;
  color: #a5d159;
  text-align: center;
  width: 10%;
  font-size: 18px;
}

 /* Estilos generales para la imagen del calendario */
 .calendar-image {
  width: 100%;
  height: auto;
}

/* Estilo responsivo para pantallas pequeñas */
@media screen and (max-width: 768px) {
  .calendar-image {
      /* Si se necesita un tamaño específico, ajusta según sea necesario */
  }

  .text-end {
    text-align: left !important;
  }
  .justify-content-end {
    justify-content: flex-start !important;
  }


  /*agregado brayan*/
  .container-fluid.container-xl.position-relative.d-flex.align-items-center.justify-content-center {
    margin-top: -4em;
  }
}

.calendar-header {
  text-align: right;
}



span.close {
  width: 100%;
  background: #DBF227;
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  color: #0a1626;
  text-align: right;
  padding-right: 10px;
}

span.numero {
  text-align: left;
  float: left;
  padding-left: 10px;
}


.scroll-container {
  max-height: 300px;  /* Puedes ajustar la altura según tu preferencia */
  overflow-y: auto;   /* Habilita el scroll vertical */
  padding-right: 10px; /* Para evitar que las imágenes toquen el borde */
}

.calendar-image {
  width: 100%; /* O el tamaño que prefieras */
  margin-bottom: 10px; /* Espaciado entre las imágenes */
  margin: 0;
}

span.text-num {
  font-weight: 100;
  font-size: 18px;
}


a.black {
  color: #000;
  text-transform: math-auto;
}

.container.bajar {
  margin-top: 10em;
}

img.img-caja {
  width: 100%;
  margin: 0;
  padding: 0;
}

.col-md-4.azul {
  background: #0A1626;
  margin: 0;
  padding: 0;
  width: 42%;
}
.col-md-8.imgcaja {
  margin: 0;
  padding: 0;
}

img.img-boleto {
  margin: 0 auto;
  display: block;
  margin-top: 4em;
}

p.pases {
  text-align: center;
  color: #DBF227;
  font-weight: bold;
  font-size: 25px;
  border-bottom: 1px solid #fff;
  width: 75%;
  margin: 0 auto;
}

p.fechas {
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 100 !important;
  font-family: sans-serif;
  padding-top: 10px;
}

.caja-evento.mt-4 {
  display: flex
;
  flex-direction: row;
}

img.img-evento {
  margin: 0 auto;
  display: block;
}

img.img-hora{
  margin: 0 auto;
  display: block;
}

img.img-ubicacion {
  margin: 0 auto;
  display: block;
}

.footer-contact-items-item {
  border-right: 1px solid #fff;
  width: 38%;
  margin: 0 auto;
  display: block;
  text-align: center;
}



.footer-contact-items-itemm {
  width: 38%;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.col-md-8.imgcaja {
  width: 58%;
}

p.eventos {
  color: #fff;
  font-family: sans-serif;
  font-size: 14px;
  padding-top: 10px;
}

p.eventos-2 {
  color: #fff;
  font-family: sans-serif;
  font-size: 14px;
  padding-top: 16px;
}

p.participa {
  background: #d3e4b0;
  width: 100%;
  margin: 0;
  padding: 10px;
  text-align: center;
  font-size: 25px;
  font-weight: revert;
  color: #000;
}

.container.verde {
  background: #d3e4b0;
}
p.p2 {
  text-align: right;
  margin-right: 1em;
  padding-top: 2em;
}

p.p1 {
  margin: 0;
  padding-left: 2em;
}

.pa1 {
  padding-top: 1em;
}


.container.bgborde {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 0;
  -webkit-box-shadow: 0px 2px 14px 0px rgba(219,219,219,1);
  -moz-box-shadow: 0px 2px 14px 0px rgba(219,219,219,1);
  box-shadow: 0px 2px 14px 0px rgba(219,219,219,1);
}

.bg-gris2 {
  background: #f7f8f8;
  padding-top: 14em;
}
.esp {
  margin-top: 2em;
}

p.parrafo-1 {
  font-size: 18px;
  padding-left: 0px;
  margin: 0;
}

p.pp1 {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 100;
  padding-left: 2em;
}

p.even {
  margin: 0;
  padding: 0 2em;
}



.video {
  margin: 0 auto;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 2em;
  margin-bottom: 1em;
}

p.parrafo-1.red {
  color: #FF0000;
  font-size: 16px;
}

img.cubo-r {
  width: 80%;
  margin: 0 auto;
  display: block;
}

.video {
  margin: 0 auto;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 2em;
  margin-bottom: 1em;
  padding: 0 300px 50px 300px;
}

img.estrella-1 {
  width: 22%;
  vertical-align: middle;
}

span.txt-usu {
  margin-top: 40px;
  position: absolute;
  margin-left: 1em;
  font-size: 18px;
  color: #a5d159;
  margin-right: 10px;
}

img.usuario-2 {
  width: 8%;
  padding-top: 2em;
}

.cuenta {
  float: right;
  margin-right: 5vw;  /* 5% del ancho de la ventana */
  text-align: center;
  color: #fff;
}





p.clasificacion {
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: right;
  float: right;
  margin-right: 2em;
  margin-top: 2em;
}

p.clasificacion input {
  position: absolute;
  top: -100px;
}

p.clasificacion label {
  float: right;
  color: #848383;
  font-size: 18px;

}

p.clasificacion label:hover,
p.clasificacion label:hover ~ label,
p.clasificacion input:checked ~ label {
  color: #A5D159;
  font-size: 18px;

}


#timer {
  font-size: 50px;
  font-weight: bold;
  color: #000;
}
button {
  font-size: 20px;
  padding: 10px 20px;
  margin-top: 20px;
  cursor: pointer;
}

.global {
  display: flex;
  justify-content: center;
}

span.dia {
  font-size: 49px;
  color: #000;
  font-weight: bold;
  margin-right: 0px;
}

img.reloj {
  margin-top: -25px;
  width: 20%;
}

img.reloj2 {
  margin-top: 19px;
  width: 85%;
}

button.btn-v {
  color: #DBF227;
  background: #0a1626;
  border: 0;
  padding: 5px 100px 5px 100px;
  margin-left: 31px;
  margin-bottom: 10px;
  font-size: 18px;
}

.flotante {
  position: fixed; /* Fija la posición en la pantalla */
  right: 0; /* Alinea la imagen a la derecha */
  top: 50%; /* La coloca en el centro vertical */
  transform: translateY(-50%); /* Ajusta el centrado vertical */
  max-width: 400px; /* Ajusta el tamaño de la imagen */
}

.container.b2 {
  margin-top: 15em;
}

.encuesta-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background-color: #F8F8F8;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}
h2 {
  text-align: center;
  color: #333;
}
.respuesta {
  display: flex;
  align-items: center;
  margin: 15px 0;
  font-size: 18px;
}
.respuesta input[type="radio"] {
  width: 25px; /* Tamaño del radio button */
  height: 25px;
  margin-right: 5px;
  background-color: #ddd; /* Gris apagado cuando no está seleccionado */
  position: relative;
  border-radius: 50%;
  transition: all 0.3s ease;
  accent-color: #ddd; /* Gris apagado por defecto */
}
/* Color gris apagado para los radio buttons cuando no están seleccionados */
.respuesta input[type="radio"]:not(:checked) {
  background-color: #d3d3d3;
}
/* Cambiar a verde cuando el radio button está seleccionado */
.respuesta input[type="radio"]:checked {
  background-color: #dbf228;
  accent-color: #dbf228; /* Color verde cuando se selecciona */
}
.respuesta label {
  font-size: 16px;
  color: #000;
  cursor: pointer;
}
/* Cambiar el color del texto cuando el radio button está seleccionado */
.respuesta input[type="radio"]:checked + label {
  color: black;
}
#finalizar-btn {
  width: 30%;
  padding: 5px;
  background-color: #0a1626;
  color: #dbf228;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  font-size: 18px;
  margin-top: 20px;
  margin-left: 21em;
  transition: background-color 0.3s ease;
}
#finalizar-btn:hover {
  background-color:#fff;
  border: 1px solid #0a1626;
  color: #0a1626;
}

p.tiempo {
  background: #DBF227;
  text-align: center;
  padding: 5px;
  font-size: 22px;
  border-radius: 10px;
}

p.habili {
  font-size: 24px;
  font-weight: bold;
  font-family: sans-serif;
}

p.parraf {
  font-size: 18px;
}

.encuesta-containerr {
  max-width: 600px;
  margin: 50px auto;
  background-color: #F8F8F8;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

p.mensaj {
  background: #0a1626;
  padding: 10px 32px;
  font-size: 30px;
  font-weight: bold;
  font-family: sans-serif;
  color: #DBF227;
}

button.center-btn {
  background: #0a1626;
  padding: 5px 40px;
  font-size: 18px;
  border: 0;
  color: #dbf228;
  margin: 0 auto;
  display: block;
  cursor: pointer;
}

p.parrafo-1.part {
  margin-top: 1em;
  margin-bottom: 2em;
}

img.paloma {
  width: 15%;
}

.calificacion-2 {
  display: flex
;
  justify-content: right;
  gap: 38px;
}


.calificacion-2 label {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
}
.calificacion-2 input {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
  cursor: pointer;
  accent-color: #DBF227; /* Cambia el color cuando se selecciona */
}

.calificacion-2 input:checked {
  background-color: #DBF227; /* Color verde al seleccionarlo */
}

.calificacion-2 input[type="radio"]:checked + span {
  color: #0007; /* Cambia el color del texto cuando el radio está seleccionado */
}

.calificacion-2 input[type="radio"]:not(:checked) + span {
  color: #333; /* Color por defecto del texto */
}

p.clasificacion-2 {
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: right;
  /* float: right; */
  margin-right: 2em;
  margin-top: 2em;
}

.encuenta {
  text-align: right;
  margin-top: -4em;
  margin-right: 2em;
}





/* Estilos para las pestañas */
.tab-titles {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columnas por defecto */
  padding: 0;
  margin: 0;
}

.tab-item {
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  background-color: #0a1626;
  margin-right: 2em;
}

.tab-item img {
  max-width: 130px;
  margin-bottom: 5px;
  padding: 15px;
}

/* Cambiar la imagen cuando el tab esté activo */
.tab-item.active#tab1 img {
  content: url('../img/club/datos-personales-active.svg'); /* Imagen activa para el Tab 1 */
}

.tab-item.active#tab2 img {
  content: url('../img/club/datos-acceso-active.svg'); /* Imagen activa para el Tab 2 */
}

.tab-item.active#tab3 img {
  content: url('../img/club/favoritos-active.svg'); /* Imagen activa para el Tab 3 */
}

.tab-item.active#tab4 img {
  content: url('../img/club/eventos.svg'); /* Imagen activa para el Tab 4 */
}

.tab-item.active {
  background-color: #0a1626;
}

/* Asegurar que el contenido ocupe toda la pantalla */
.tab-content {
  display: none;
  padding: 20px;
  background-color: #0a1626;
  border: 0px solid #ddd;
  width: 100vw;
  box-sizing: border-box;
}

.tab-content.active {
  display: block;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .tab-titles {
      grid-template-columns: 1fr 1fr; /* 2 columnas en pantallas medianas */
  }
  .tab-item:nth-child(3),
  .tab-item:nth-child(4) {
      margin-top: 10px; /* Espaciado entre las filas */
  }
}

@media (max-width: 480px) {
  .tab-titles {
      grid-template-columns: 1fr 1fr; /* 2 columnas también en pantallas muy pequeñas */
  }
  .tab-item:nth-child(3),
  .tab-item:nth-child(4) {
      margin-top: 10px; /* Espaciado entre las filas */
  }
}

p.txt-d1, p.txt-d2, p.txt-d3, p.txt-d4 {
  background: #ffffff;
  margin: 0;
  padding: 5px;
  font-size: 18px;
  font-weight: 500;
  font-family: sans-serif;
  color: #000;
}

p.txt-d3 {
  background: #ffffff;
  margin: 0;
  padding: 5px;
  font-size: 18px;
  font-weight: 500;
  font-family: sans-serif;
  color: #000;
  margin-top: 7px;
}

p.txt-d4 {
  background: #ffffff;
  margin: 0;
  padding: 5px;
  font-size: 19px;
  font-weight: 500;
  font-family: sans-serif;
  color: #000;
  margin-top: 24px;
}

img.img-evento {
  margin-top: 0px;
  margin-bottom: 1px;
  padding-top: 1px;
}





.tabs {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.bg-az {
  background: #0a1626;
  margin-top:2em;
}

img.img-1 {
  margin: 0 auto;
  display: block;
  width: 12%;
  margin-top: 2em;
}

p.txt-1 {
  text-align: center;
  color: #fff;
  margin: 0;
  font-size: 18px;
}
span.ver-tx {
  color: #a4d159;
  font-family: sans-serif;
  font-weight: 100;
  font-size: 18px;
}

.conten-form {
  width: 77%;
  margin: 0 auto;
  margin-top: 2em;
}
.form-group.row {
  margin-bottom: 1em;
}

.col-form-label {
  padding-top: calc(.375rem + var(--bs-border-width));
  padding-bottom: calc(.375rem + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
  color: #fff;
}

label.form-check-label.margen {
  margin: 0;
  color: #fff;
}

.form-check-input:checked {
  background-color: #a4d159;
  border-color: #a4d159;
}

button.btn.btn-primary.entrar {
  text-align: center;
  margin: 0 auto;
  display: block;
  background: #fff;
  color: #000;
  padding: 5px 30px 5px 30px;
  border: 1px solid #a4cf58;
}

label.col-sm-2.col-form-label.txt-no {
  text-align: right;
}
legend.col-form-label.txt-no.col-sm-2.pt-0 {
  text-align: right;
}

input.form-control.impu {
  width: 30%;
}

input.form-control.impu-c {
  width: 40%;
}

input.form-control.impu-p {
  width: 25%;
}


p.txt-2 {
  color: #a4d159;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 22px;
}

input.form-control.email {
  width: 70%;
}

.conten-form2 {
  width: 70%;
  margin: 0 auto;
  margin-top: 2em;
}








ul {
  padding: 0;
  padding-left: 1em;
}

li {
  margin: 10px 0;
  font-size: 1.1em;
}

/* Estilos de los checkboxes */
input[type="checkbox"] {
  display: none; /* Ocultar el checkbox por defecto */
}

input[type="checkbox"] + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  line-height: 1.5;
  user-select: none;
  color: #fff;
  font-weight: 100;
  font-family: sans-serif;
}

/* Estilo del círculo */
input[type="checkbox"] + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #aaa;
  transition: background-color 0.3s, border-color 0.3s;
}

input[type="checkbox"]:checked + label::before {
  background-color: #a5d159;
  border-color: #a5d159;
}

input[type="checkbox"]:checked + label::after {
  content: '✔';
  position: absolute;
  left: 4px;
  top: 0px;
  font-size: 14px;
  color: white;
}


.conten-form3 {
  width: 30%;
  margin: 0 auto;
  margin-top: 2em;
}

p.temas {
  font-size: 30px;
  font-weight: bold;
  font-family: sans-serif;
  color: #fff;
  margin-bottom: 1.5em;
}

button.verdebd {
  background: #a5d159;
  padding: 5px 20px 5px 20px;
  border: 0;
  color: #000;
  font-size: 18px;
}


img.img-loop {
  width: 100%;
}

.col-md-6.bga {
  background: #0a1626;
  margin: 0;
  padding: 0;
}

p.\31 p {
  color: #fff;
  font-weight: 100;
  font-family: sans-serif;
  padding: 60px;
}
video.video1 {
  padding: 0px 50px 50px 50px;
  max-height: 300px;
}

p.title-h {
  font-size: 40px;
  color: #000;
  font-weight: bold;
  font-family: sans-serif;
  padding-left: 1.1em;
}

.contenido {
  display: flex;
  align-items: flex-start;
}
.contenido img {
  max-width: 100%;
  height: auto;
  margin-right: 20px;
}
.contenido .texto {
  margin-top: 0px;
  margin-bottom: 1em;
}




p.v1 {
  color: #A5D159;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  font-family: sans-serif;
}

img.iconk {
  width: 4%;
}

img.iconk-1 {
  width: 28px;
  margin-bottom: 2em;
}

img.iconk-2 {
  width: 25px;
}


img.iconk-2 {
  width: 20px;

}

img.iconk-3 {
  width: 20px;
}
img.iconk-4 {
  width: 22px;
  margin-top: 10px;
}


p.v2 {
  margin: 0;
}


p.v1-m {
  color: #A5D159;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  font-family: sans-serif;
  margin-left: 42px;
}

img.rd1 {
  width: 5%;
  margin-right: 10px;
  margin-top: 10px;
}

.mov-c {
  margin-left: 3em;
}

.calificador {
  display: flex;
  align-items: center;
}
.texto-calificacion {
  margin-right: 10px;
  font-size: 18px;
}
.cali {
  font-size: 20px;
  color: #d3d3d3;
  cursor: pointer;
}
.cali.activada {
  color: #a5d159;
}

button.btn-cer {
  background: #0a1626;
  color: #a5d159;
  border: 0;
  padding: 5px 20px 5px 20px;
  font-size: 18px;
}

p.termino {
  margin: 0;
  font-size: 14px;
}

img.r-rojo {
  width: 100%;
}

.row.brd {
  -webkit-box-shadow: 0px 2px 14px 0px rgba(219, 219, 219, 1);
  -moz-box-shadow: 0px 2px 14px 0px rgba(219, 219, 219, 1);
  box-shadow: 0px 2px 14px 0px rgba(219, 219, 219, 1);
}

img.paloma-1 {
  width: 8%;
  margin: 0 auto;
  margin-bottom: 1em;
}

span.closee {
  width: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  color: #0a1626;
  text-align: right;
  padding-right: 10px;
}

button.btn-salir {
  background: #0a1626;
  color: #a5d159;
  border: 0;
  width: 15%;
  margin: 0 auto;
  font-size: 18px;
  padding: 5px 20px 5px 20px;
}

.modal-box { /* Cambio de nombre de la clase */
  background-color: #fefefe;
  margin: 20% auto;
  padding: 10px 20px;
  border: 1px solid #888;
  width: 600px; /* Tamaño reducido */
  text-align: center;
  font-size: 16px; /* Reducir tamaño de la fuente */
}

span.close.blanco {
  background: #fff;
}

.modal-content.ck {
  width: 90%;
  max-width: 600px;
}

section#services-3\ bj-v {
  background: #eef6e0;
}






 /* El Modal - Por defecto está oculto */
 .custom-modal {
  display: none; /* Ocultamos el modal por defecto */
  position: fixed;
  z-index: 1; /* Nos aseguramos de que se muestre encima de todo */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Necesario si el contenido del modal es más grande que la ventana */
  background-color: rgba(0, 0, 0, 0.4); /* Fondo semitransparente */
}

.custom-modal-content {
  margin: 15% auto;
  padding: 0px;
  border: 0px solid #888;
  width: 46%;
}

/* El botón de cierre (x) */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

span.close.gris {
  background: #f8f8f8;
  margin-top: -1em;
  margin-bottom: 1em;
}

button.btn.btn-participa {
  margin-left: 1em;
}




.modal-content2 {
  margin: 0px auto;
  padding: 0;
  width: 50%;
  max-width: 600px;
  margin-top: 14em;
}

button.btn-close {
  color: red;
  background: red;
  float: right;
  margin-top: 0em;
}

button.btn.btn-participa {
  font-size: 18px;
}

input#dia {
  width: 100%;
}

input#anio {
  width: 100%;
}

input#fecha {
  width: 100%;
  padding: 2px 10px;
}

select#pais {
  width: 25%;
  padding: 8px;
}

p.bg-descuentos {
  width: 93%;
  margin-top: 4em;
  background: #a5d159;
  color: #000;
  padding: 5px 20px 5px 20px;
  font-size: 25px;
}
img.img-qr {
  width: 16%;
  text-align: right;
  float: right;
  margin-top: -18.5%;
  max-width: 600px;
  margin-right: 3em;
}

ul.porcen {
  padding-left: 20px;
  padding-right: 20px;
}

.clifa {
  position: relative;
  float: left;
  width: 100%;
  text-align: left;
  margin: 0;
  padding: 0;
}

p.clasificacion.calif {
  float: left;
  margin: 0;
}

.ventana-emergente {
  display: none; /* Ocultar la ventana emergente por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

/* Estilo para el contenido de la ventana emergente */
.ventana-emergente-contenido {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

/* Estilo del botón de cerrar */
.cerrar-btn {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.cerrar-btn:hover {
  background-color: #d32f2f;
}

button.btn-salirr {
  background: #0a1626;
  color: #a5d159;
  border: 0;
  width: 30%;
  margin: 0 auto;
  font-size: 18px;
  padding: 5px 20px 5px 20px;
}

img.paloma-l {
  width: 15%;
  margin: 0 auto;
  margin-bottom: 1em;
}

.v-a {
  font-size: 22px;
  color: #0A1626;
  font-weight: 500;
  font-family: sans-serif;
  margin-top: 1em;
}


img.img-events {
  margin-top: 25px;
  margin-bottom: 1px;
  padding-top: 6px;
}

.spac {
  margin-top: 12em;
}

.container.section-titlet.aos-init.aos-animate {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--heading-font);
  padding-left: 25px;
  margin-left: 5%;
}



.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  /*retirado por brayan height: 170px; */

}


section.section-1 {
  margin-top: 12em;
}

main.main {
  margin-top: 4em;
}




button.btn.btn-link {
  width: 100%;
  text-align: center;
  margin: 0;
  color: #fff;
  text-decoration: none;
  font-weight: 100;
  font-family: sans-serif;
}

img.zapato {
  width: 10%;
}

section.section-carrusel {
  margin: 0;
}

p.error-404 {
  text-align: center;
  font-size: 3em;
  font-weight: bold;
  font-family: sans-serif;
}

img.restri {
  margin: 0 auto;
  display: block;
  width: 30%;
  margin-top: 5em;
  margin-bottom: 0em;
}

.container-3 {
  width: 600px;
  margin: 0 auto;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(212, 212, 212, 1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(212, 212, 212, 1);
  box-shadow: 0px 0px 10px 0px rgba(212, 212, 212, 1);
  margin-bottom: 4em;
}

.separacion {
  margin-top: 13em;
}

img.logo-error {
  width: 70%;
  padding-top: 15px;
  margin: 0 auto;
  display: block;
}

.contenedor {
  width: 900px;
  margin: 0 auto;
}

p.elclub-text {
  margin-top: 6em;
  font-size: 30px;
  font-weight: 900;
  font-family: sans-serif;
}
p.elclub-tex {
  font-size: 30px;
  font-weight: 900;
  font-family: sans-serif;
}

span.green {
  color: #A5D159;
  font-weight: 400;
}

p.txt-name {
  margin: 0;
  font-size: 18px;
}

p.txt-nam {
  font-size: 18px;
}

.margen {
  padding: 50px;
}

b.cuenta2 {
  color: #fff;
}

/*--------------------------------------------------------------
# Css Nestor fin
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #000;
  background-color: #F8F8F8;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}





/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #a5d159;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------


------------------------*/


@media screen and (min-width: 768px) and (max-width: 1100px) {



  b.cuenta2 {
    font-weight: 600;
    font-family: sans-serif;
    font-size: 13px;
    padding-top: 4px;
    color:#fff;
}

  img.usuario-2 {
    width: 4%;
    padding-top: 2em;
}

span.txt-usu {
  margin-top: 30px;
  margin-left: 0.5em;
  margin-right: 43px;
}
  .col-md-4 {
    flex: 0 0 auto;
    width: 100%;
}



img.usuario {
  width: 2%;
  margin-right: 50px;
  margin-top: 2em;
}
  p.user-l {
    text-align: right;
    margin-right: 7em;
    margin-top: -5em!important;
}

.cuenta {
  float: right;
  margin-right: 17px;
}



  input.form-control.campo {
    margin-bottom: 0em;
    margin-top: 0px;
    border: 1px solid #000;
}

  .col-md-2 {
    width: 24%;
}
p.explots {
  color: #fff;
  font-weight: bold;
  font-size: 2em;
  padding: 5px 10px 0 5px;
  margin-top: 2em;
  text-transform: uppercase;
  line-height: 40px;
}

p.explots-2 {
  color: #a5d159;
  font-weight: bold;
  font-size: 2em;
  position: relative;
  text-transform: uppercase;
  line-height: 40px;
  margin-top: 2em;
  padding: 0;
}

.spac {
  margin-top: 4em;
}

.espacio-1

 {
    margin-bottom: 7em;
}
}








@media screen and (max-width: 768px) {

  img.usuario-2 {
    width: 4%;        /* Ancho del 4% relativo */
    min-width: 30px;  /* Ancho mínimo en píxeles */
  }

  .event-video video,
  .event-video iframe,
  .event-video .ratio {
    width: 100% !important; /* Fuerza el ancho al 70% */
    max-width: 100%;
  }


  .contenedor {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
  }


  p.elclub-text {
    margin-top: 0em;
    font-size: 25px;
    font-weight: 900;
    font-family: sans-serif;
  }

  p.elclub-tex {
  font-size: 25px;
  font-weight: 900;
  font-family: sans-serif;
  }

  .bg-logo {
    background: #0A1626;
    padding: 0;
    margin: 0;
    padding-bottom: 10px;
  }

  b.cuenta2 {
    font-weight: 100;
    font-family: sans-serif;
    font-size: 12px;
    padding-top: 4px;
  }

  input.form-control.campo {
    margin-bottom: 0em;
    margin-top: 0px;
    border: 1px solid #000;
  }


  button.btn.btn-link {
    width: 100%;
    text-align: center;
    margin: 0;
    color: #fff;
    text-decoration: none;
    font-weight: 100;
    font-family: sans-serif;
    font-size: 12px;
  }

  .carousel-inner {
    margin-top: 4em;
  }

  img.img-fluid.bordeimg {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 14px;
  }

  .cuenta {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: right;
    margin-right: 15px;
    color:#fff;
  }

  main.main {
    margin-top: 7em;
  }
/*brayan fixe retirar
  .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    height: 0px;
  }

*/

  .container.section-titlet.aos-init.aos-animate {
    color: var(--heading-color);
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--heading-font);
    padding-left: 25px;
    margin-left: 5%;
  }



  p.vive {
    text-align: left;
    font-size: 26px;
    font-weight: bold;
    color: #DBF226;
    padding-top: 29px;
  }

  p.momentos {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: bold;
    width: 50%;
    float: left;
    line-height: 15px;
  }

  p.disfruta {
    width: 50%;
    border: 1px solid #fff;
    padding: 0px;
    color: #daf123;
    font-weight: bold;
    text-shadow: 1px 1px #1a1a1a;
    font-size: 14px;
    margin-top: 10px;
    float: left;
    margin-right: 1px;
  }

  .carousel-item.bajo {
    margin-top: 2em;
  }

  .spac {
    margin-top: 0em;
  }

  p.descuento-2 {
    line-height: 30px !important;
        font-size: 27px !important;
        margin: 0 !important;
        margin-bottom: 2em !important;
        margin-top: 4em !important;
  }

  img.img-events {
    margin-top: 25px;
    margin-bottom: 19px;
    padding-top: 6px;
  }

  img.img-evento {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
  }

  input[type="checkbox"] + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    user-select: none;
    font-weight: 100;
    font-family: sans-serif;
    margin-top: -2em;
  }

  .tabs {
    margin: 0 auto;
    display: block;
    margin-left: 1em;
  }



  p.txt-d1, p.txt-d2, p.txt-d3, p.txt-d4 {
    background: #ffffff;
    margin: 0;
    padding: 5px;
    font-size: 15px;
    font-weight: 500;
    font-family: sans-serif;
    color: #000;
  }



  img.img-qr {
    width: 23%;
    text-align: right;
    float: right;
    margin-top: -27.7%;
    max-width: 600px;
    margin-right: 0em;
  }

  p.pregunt {
    text-align: left;
  }

  button.btn.btn-participa {
    margin-left: -1em;
  }
  .modal-content2 {
    margin: 0px auto;
    padding: 0;
    width: 100%;
    max-width: 600px;
    margin-top: 14em;
  }

  .line-verde {
    border-bottom: 5px solid #a5d159;
    margin-top: 1em;
  }

  .img-estrellas {
    width: 100%;
    margin-left: 1em;
    margin-top: 6em;
    margin-bottom: 2em;
  }

  .testimonials .testimonial-item h3 {
    font-size: 14px!important;
    font-weight: bold;
    margin: 10px 0 5px 0;
    background: #000000;
    padding: 10px;
    color: #fff;
  }

  img.paloma-1 {
    width: 20%;
    margin: 0 auto;
    margin-bottom: 1em;
  }



  button.btn-salir {
    background: #0a1626;
    color: #a5d159;
    border: 0;
    width: 35%;
    margin: 0 auto;
    font-size: 18px;
    padding: 5px 20px 5px 20px;
  }

  .modal-content.ck {
    width: 90%;
    max-width: 600px;
    margin-top: 14em;
  }

  .conten-form3 {
    width: 90%;
    margin: 0 auto;
    margin-top: 2em;
  }

  input.form-control.email {
    width: 100%;
  }

  .conten-form2 {
    width: 95%;
    margin: 0 auto;
    margin-top: 2em;
  }

  img.img-1 {
    margin: 0 auto;
    display: block;
    width: 50%;
    margin-top: 2em;
  }

  .conten-form {
    width: 95%;
    margin: 0 auto;
    margin-top: 2em;
  }

  legend.col-form-label.txt-no.col-sm-2.pt-0 {
    text-align: left;
  }



  input.form-control.impu-p {
    width: 75%;
  }


  input.form-control.impu {
    width: 75%;
  }

  input.form-control.impu-c {
    width: 75%;
  }





  label.col-sm-2.col-form-label.txt-no {
    text-align: left;
  }

  .encuenta {
    text-align: right;
    margin-top: -1em;
    margin-right: 3em;
  }

  p.tiempo {
    background: #DBF227;
    text-align: center;
    padding: 5px;
    font-size: 22px;
    border-radius: 10px;
    width: 55%;
    margin: 0 auto;
    margin-bottom: 1em;
  }



  #finalizar-btn {
    width: 30%;
    padding: 5px;
    background-color: #0a1626;
    color: #dbf228;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
    margin-left: 12em;
    transition: background-color 0.3s ease;
  }
  .container.b2 {
    margin-top: 10em;
  }

  p.clasificacion {
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: left;
    float: none;
    margin-right: 0em;
    margin-top: 1em;
  }



  p.cuenta {
    text-align: center;
    color: #fff;
    margin-left: 23em;
    font-size: 12px;
  }

.cuenta {
  margin-left: 3em;
  }

  span.txt-usu {
    margin-top: 40px;
    position: absolute;
    margin-left: 0.5em;
    font-size: 12px;
  }

  p.even {
    margin: 0;
    padding: 0 0em;
  }

  p.pp1 {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 100;
    padding-left: 0em;
  }



  p.p1 {
    margin: 0;
    padding-left: 0em;
  }



  .bg-gris2 {
    background: #f7f8f8;
    padding-top: 3em;
  }

  img.estrella-1 {
    width: 35%;
  }



  img.estrella {
    padding: 0px 5px 0px 5px;
    width: 17%;
  }

  p.parrafo-1 {
    font-size: 18px;
    padding-left: 0px;
    margin: 0;
  }

  p.p2 {
    text-align: left;
    margin-right: 0;
    padding-top: 1em;
    font-size: 16px;
    margin-left: 0em;
  }

  .video {
    margin: 0 auto;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 2em;
    margin-bottom: 1em;
    padding: 0 0px 10px 0px;
  }


  img.cubo-r {
    width: 80%;
    margin: 0 auto;
    display: block;
    margin-bottom: 2em;
  }



  .bg-gris2 {
    background: #f7f8f8;
    margin-top: 2em;
  }



  p.eventos-2 {
    color: #fff;
    font-family: sans-serif;
    font-size: 12px;
    padding-top: 16px;
  }



  p.eventos {
    color: #fff;
    font-family: sans-serif;
    font-size: 12px;
    padding-top: 10px;
  }

  .footer-contact-items-item {
    border-right: 1px solid #fff;
    width: 30%;
    margin: 0 auto;
    display: block;
    text-align: center;
  }

  img.img-boleto {
    margin: 0 auto;
    display: block;
    margin-top: 2em;
  }

  .col-md-8.imgcaja {
    width: 100%;
    margin-top: 2em;
  }

  .col-md-4.azul {
    background: #0A1626;
    margin: 0;
    padding: 0;
    width: 100%;
  }



  .container.bajar {
    margin-top: 2em;
  }


  .weekday {
    width: 14%;
    text-align: center;
    font-size: 10px;
  }



select#month-select {
  background: #0a1626;
  color: #a5d159;
  text-align: center;
  width: 23%;
  font-size: 14px;
}
/*
.calendar-header select {
  width: 100%;
  padding: 3px;
  margin-bottom: 20px;
}*/


  video.video {
    margin: 0 auto;
    display: block;
    margin-bottom: 2em;
    width: 100%;
}



  .espacio-2 {
    margin-top: 0px;
}

  img.img-video {
    width: 100%;
    margin: 0 auto;
    display: block;
    padding-top: 10px;
    padding-bottom: 20px;
}


  p.prefieres {
    text-align: left;
    font-size: 17px;
    font-weight: 500;
    font-family: sans-serif;
}



  img.escudo {
    width: 125px;
    margin-top: -2em;
    z-index: 1;
    display: flow-root;
    position: relative;
}

  p.verde.web {
    display: none;
}
  spn.momento {
    color: #000;
        font-size: 16px;
        font-weight: bold;
}

img.estrella {
  padding: 0px 5px 0px 5px;
  width: 17%;
  float: left;
}



  img.evento {
    width: 15%;
}



  .bg-azul {
    background: #e6e7e8;
}



  section#services-3 {
    margin-top: 2em;
    margin-bottom: 2em;
}



  p.black {
    font-size: 22px;
    color: #000000;
    font-weight: 500;
    font-family: sans-serif;
    padding-top: 15px;
}

  p.verde {
    font-size: 22px;
    color: #A5D159;
    font-weight: 600;
    font-family: sans-serif;
    margin-left: 20px;
}

  section, .section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 0px 0;
    scroll-margin-top: 77px;
    overflow: clip;
}

  p.constant {
    font-size: 20px;
    text-align: center;
    font-weight: 300;
    font-family: sans-serif;
    line-height: 32px;
}

  p.gracias {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 25px;
    color: #0A1626;
}



  p.titulo-iniciof {
    color: #DBF227;
    font-size: 24px;
    font-family: sans-serif;
    text-align: center;
    line-height: 25px;
}

  p.titulo-inicio {
    color: rgb(219, 242, 39);
    font-size: 25px;
    font-weight: bold;
    font-family: sans-serif;
    padding: 0px;
    margin: 0px;
}

  p.logofm {
    text-align: right;
    margin-right: 0px;
}


  img.logo-sesion {
    width: 70%;
}



  p.peque {
    text-align: center;
    font-size: 14px;
    padding: 30px 0px 30px 0px;
}

  p.titulo-acti {
    font-size: 15px;
        font-weight: 100;
        font-family: sans-serif;
        color: #2a2c39;
        padding-left: 20px;
        padding-top: 10px;
}

  button.imprimir {
    background: #0a1626;
    color: #DBF227;
    border: 0;
    padding: 10px;
    margin-bottom: 2em;
    margin-top: 1em;
    float: right;
    font-size: 22px;
    margin-right: 1em;
}



  p.txt-club {
    font-size: 2.5em;
    margin: 0;
    padding: 0;
    font-weight: 100;
    font-family: sans-serif;
    color: #A5D159;
    margin-top: 1em;
    margin-bottom: 1em;
    display: none;
}

  .bg-descuento {
    background-image: url(../img/club/bg-cuadro.png);
    background-repeat: no-repeat;
    margin-top: -5em;
    width: 100%;
    background-position: right;
}

  p.title-ventana {
    font-size: 2em;
    font-weight: bold;
    font-family: sans-serif;
    color: #000;
    padding: 20px 0px 0px 20px;
    margin-top: 0em;
}



  .espacio-1 {
    margin-bottom: 6em;
}

  .container-2 {
    width: 100%;
    margin: 0 auto;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(212, 212, 212, 1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(212, 212, 212, 1);
    box-shadow: 0px 0px 10px 0px rgba(212, 212, 212, 1);
    margin-bottom: 4em;
    padding-bottom: 2em;
}

  .carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex
;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}

  p.verma {
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: capitalize !important;
    text-align: right;
    padding-top: 0px;
    margin-top: -4.5em;

}
/*brayan retirar
  .header {
    --background-color: #0a16266e;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: #0a1626b0;
    padding: 0px 0 0px 0;
    transition: all 0.5s;
    z-index: 997;
}
*/

  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  img.logo-c {
    width: 55%;
    padding-top: 15px;
    display: none;
}

img.logo-re {
  margin: 0 auto;
  display: block;
}

p.user-l {
  text-align: right;
  margin-right: 5em;
  /*margin-right: 5em;*/
  margin-top: -4em;
}


span.txt-usu {
  margin-top: 40px;
  position: absolute;
  margin-left: 0.5em;
  margin-right: 20px;
}
/*.container-fluid.container-xl.position-relative.d-flex.align-items-center.justify-content-center {
  float: left;
  width: 20%;
  margin-top: -2.5em;
}*/

p.explots {
  color: #fff;
  font-weight: bold;
  font-size: 2em;
  position: relative;
  padding: 20px 10px 0 10px;
}


p.text-icon {
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

img.iconos {
  width: 31%;
  margin: 0 auto;
  display: block;
}

img.iconos-4 {
  width: 37%;
        margin: 0 auto;
        display: block;
        padding-top: 0px;
        padding-bottom: 0px;
}



img.iconos-5 {
  width: 20px;
  margin: 0 auto;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
}

img.iconos-6 {
  width: 41px;
  margin: 0 auto;
  display: block;
  padding-top: 5px;
  padding-bottom: 0px;
}

img.iconos-7 {
  width: 31px;
  margin: 0 auto;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
}


img.iconos-8 {
  width: 20px;
  margin: 0 auto;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
}


img.iconos-9 {
  width: 20px;
  margin: 0 auto;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
}


img.iconos-10 {
  width: 28px;
  margin: 0 auto;
  display: block;
  padding-top: 0px;
  padding-bottom: 0px;
}


img.iconos-11 {
  width: 31px;
  margin: 0 auto;
  display: block;
  padding-top: 1px;
  padding-bottom: 3px;
}

img.iconos-12 {
  width: 33px;
  margin: 0 auto;
  display: block;
  padding-top: 4px;
  padding-bottom: 5px;
}
.col-md-4.nocaja {
  display: none;
}


.col-md-8.caja3 {
  margin-top: 0em;
  padding: 0;
}

img.img-s {
  width: 100%;
  margin-bottom: 1em;
}

p.explots-2 {
  color: #a5d159;
  font-weight: bold;
  font-size: 26px;
  position: relative;
  padding: 0px 100px 10px 0px;
}

.caja-2 {
  height: 195px;
}

.section-title p {
  color: var(--heading-color);
        margin: 0;
        font-size: 22px !important;
        font-weight: 700;
        font-family: var(--heading-font);
        line-height: 45px !important;
        margin-top: 0em !important;
        text-transform: uppercase;
}

.bg-gris1 {
  background: #e6e7e8;
  margin-top: 1em;
}



.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -3px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

i.bi.bi-arrow-right-short {
  display: none;
}

i.bi.bi-arrow-left-short {
  display: none;
}


.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 15px;
  height: 15px;
  padding: 0;
  margin-right: 0px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #676767;
  background-clip: padding-box;
  border-radius: 50px;
  /* border-top: 10px solid transparent; */
  /* border-bottom: 10px solid transparent; */
  opacity: .5;
  transition: opacity .6s ease;
  border: 0px;
}

.carousel-indicators {
  color: var(--heading-color);
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
  padding-left: 30px;
  padding-right: 0px;
  line-height: 32px;
}

img.d-block.w-100.web {
  display: none !important;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  display: inline-block;

  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  font-family: var(--heading-font);
  padding-left: 30px;
  padding-right:30px;
  line-height: 32px;
}

img.comillas2 {
  float: left;
  height: 26px;
  margin-bottom: 2em;
  margin-right: 5px;
  margin-left: 15px;
}

.row.form {
  padding: 0 20px 0 20px;
}



.check {
  margin-top: -3em;
  font-size: 13px;
  margin-left: -1em;
}
}

.services-carousel-wrap {
  padding: 0px 10px 20px 10px;
}

.navigation-prev, .navigation-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background-color: rgb(1 1 1 / 74%);
  border: none;
  padding: 5px;
  color: white;
  font-size: 20px;
  z-index: 10;
  border-radius: 5px;
}


@media (min-width: 768px) and (max-width: 3000px) {


  .cuenta {
    color: #fff;

}

  p.verde.mobi {
    display: none;
}
  img.d-block.w-100.mmobile {
    display: none !important;
}

  img.logo-re {
    display: none;
}


}

@media (min-width: 820px) and (max-width: 1180px){

  .event-video video,
  .event-video iframe,
  .event-video .ratio {
    width: 60% !important; /* Fuerza el ancho al 70% */
    max-width: 100%;
  }

  p.elclub-text {
    margin-top: 3em;
    font-size: 30px;
    font-weight: 900;
    font-family: sans-serif;
}


  .contenedor {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.espacio-1 {
  margin-bottom: 6em;
}

  .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -1em;
}
.spac {
  margin-top: 7em;
}
 /*retirar brayan
  .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    height: 65px;
}


  .justify-content-center {
    justify-content: left!important;
    margin-top: -2em!important;
}

  .col-md-8 {
    flex: 0 0 auto;
    width: 73%;
}
*/
  img.logo-re{
    display: none!important;
  }

}






/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0;
  scroll-margin-top: 500px;
  overflow: clip;
  margin-top: 2em;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 15px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--heading-font);
  padding-left: 25px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color) 90%, white 10%) 100%);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 75vh;
  padding-top: 60px;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

.hero h2 span {
  text-decoration: underline;
}

.hero p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  color: var(--default-color);
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .hero p {
    max-width: 60%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  .hero .carousel-container {
    min-height: 90vh;
  }

  .hero h2 {
    font-size: 28px;
  }
}

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/


.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 30px 60px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .service-item .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .service-item .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 300px;
  border-right: 1px solid #707070;
}

.caja-texto {
  height: 195px;
}

.line-verde {
  border-bottom: 5px solid #a5d159;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  margin-right: 15px;
  float: left;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  background: #000000;
  padding: 10px;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
  text-align: right;
}

h4 {
  text-align: right;
}

.testimonials .testimonial-item .stars i {
  color: #a5d159;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #a5d159;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  margin: 15px auto 15px auto;
  font-size: 15px;
}

.testimonials .swiper-wrapper {
  height: auto;
  font-style: italic;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 14px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }


}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.faq .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.faq p {
  line-height: 1.7;
  color: var(--default-color);
}

.faq .custom-accordion .accordion-item {
  background-color: var(--surface-color);
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}

.faq .custom-accordion .accordion-item .btn-link {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  text-align: left;
  color: var(--default-color);
  border: none;
  padding-left: 40px;
  border-radius: 0;
  position: relative;
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
}

.faq .custom-accordion .accordion-item .btn-link:before {
  content: "\f282";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true] {
  color: var(--accent-color);
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true]:before {
  font-family: "bootstrap-icons" !important;
  content: "\f286";
  position: absolute;
  color: var(--accent-color);
  top: 50%;
  transform: translateY(-50%);
}

.faq .custom-accordion .accordion-item .accordion-body {
  padding: 20px 20px 20px 20px;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.init-swiper .swiper-slide {
    opacity: 0; /* Transparencia inicial */
    transform: scale(0.98); /* Ligero zoom-out */
    transition: opacity 0.4s ease, transform 0.4s ease; /* Suavizado */
}

/* 2. Estado FINAL (cuando Swiper está listo) */
.init-swiper .swiper-slide.swiper-slide-visible {
    opacity: 1; /* Totalmente visible */
    transform: scale(1); /* Tamaño normal */
}

/* 3. Asegura que el contenedor no colapse */
.init-swiper .swiper-wrapper {
    min-height: 200px; /* Altura mínima durante carga */
}

.btn-v[disabled] {
    opacity: 0.6;          /* visualmente deshabilitado */
    pointer-events: none;  /* por si algún navegador ignora disabled */
}

/* estilos para banners izquierda y derecha de anuncios*/
.floating-ad {
    position: absolute; /* Importante para animar la posición */
    top: 150px; /* Posición inicial */
    width: 110px;
    z-index: 10; /* Más bajo que los botones flotantes */
    transition: top 0.2s ease-in-out;
}

.floating-ad img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.floating-ad.left {
    left: 0;
}

.floating-ad.right {
    right: 0;
}

@media screen and (max-width: 1200px) {
    .floating-ad {
        display: none; /* Ocultar en móviles y pantallas pequeñas */
    }
}

