@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Racing+Sans+One&display=swap");
/* RESET MODERNO */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
  color: #000;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

body, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
dl, dd, ol, ul, figure, hr,
fieldset, legend, textarea, input, select, button, span {
  margin: 0;
  padding: 0;
}

a, a:hover {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

button {
  cursor: pointer;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 100, "GRAD" 0, "opsz" 24;
}

.m400 {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.logo-font {
  font-family: "Racing Sans One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.ficha {
  box-shadow: 0px 0px 18px 2px rgba(186, 186, 186, 0.4);
  -webkit-box-shadow: 0px 0px 18px 2px rgba(186, 186, 186, 0.4);
  -moz-box-shadow: 0px 0px 18px 2px rgba(186, 186, 186, 0.4);
  padding: 15px;
  border-radius: 5px;
}

:root {
  --red: #fa481c;
  --red-rgb: 250, 72, 28;
  --dark-blue: #04395e;
  --dark-blue-rgb: 4, 57, 94;
  --blue: #0066ff; /* brandeis-blue */
  --blue-rgb: 0, 102, 255;
  --green: #2ba84a; /* pigment-green */
  --green-rgb: 43, 168, 74;
  --accent: #70a288;
  --accent-rgb: 112, 162, 136;
  --dark-blue-2: #031d44;
  --dark-blue-2-rgb: 3, 29, 68;
  --light: #F6FAFF;
  --light-rgb: 246, 250, 255;
  --black: #0c0f0a;
  --black-rgb: 12, 15, 10;
  --gray: #6c757d;
  --gray-rgb: 108, 117, 125;
  --white: #FFFFFF;
  --white-rgb: 255, 255, 255;
  --fondo: #F2F1F1;
  --muted: #C8C8C8;
}

/* 
    ejemplos de uso 

    color: var(--primary);
    background-color: var(--secondary);
    background-color: rgba(var(--primary-rgb), 0.5);
*/
.button {
  position: relative;
  padding: 8px 20px;
  border: none;
  font-weight: bold;
  width: fit-content;
  cursor: pointer;
}

/* Borde decorativo */
.button::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px solid transparent;
  pointer-events: none;
}

.button:hover:before {
  top: -3px;
  left: -5px;
  right: -5px;
  bottom: -3px;
}

.button-red {
  background-color: var(--red);
  color: var(--white);
}
.button-red::before {
  border-color: var(--red);
  transition: all ease-in 0.1s;
}
.button-red:hover {
  color: var(--white);
}

.button-black {
  background-color: var(--black);
  color: var(--white);
}
.button-black::before {
  border-color: var(--black);
  transition: all ease-in 0.1s;
}
.button-black:hover {
  color: var(--white);
}

.button-gray {
  background-color: var(--gray);
  color: var(--white);
}
.button-gray::before {
  border-color: var(--gray);
  transition: all ease-in 0.1s;
}
.button-gray:hover {
  color: var(--white);
}

.button-blue {
  background-color: var(--blue);
  color: var(--white);
}
.button-blue::before {
  border-color: var(--blue);
  transition: all ease-in 0.1s;
}
.button-blue:hover {
  color: var(--white);
}

.button-dark-blue {
  background-color: var(--dark-blue);
  color: var(--white);
}
.button-dark-blue::before {
  border-color: var(--dark-blue);
  transition: all ease-in 0.1s;
}
.button-dark-blue:hover {
  color: var(--white);
}

.button-dark-blue-2 {
  background-color: var(--dark-blue-2);
  color: var(--white);
}
.button-dark-blue-2::before {
  border-color: var(--dark-blue-2);
  transition: all ease-in 0.1s;
}
.button-dark-blue-2:hover {
  color: var(--white);
}

.button-green {
  background-color: var(--green);
  color: var(--white);
}
.button-green::before {
  border-color: var(--green);
  transition: all ease-in 0.1s;
}
.button-green:hover {
  color: var(--white);
}

.button-white {
  background-color: var(--white);
  color: var(--black);
}
.button-white::before {
  border-color: var(--white);
  transition: all ease-in 0.1s;
}
.button-white:hover {
  color: var(--black);
}

.top-bar {
  padding-top: 6px;
  padding-bottom: 6px;
}

.top-bar .redes a {
  display: block;
  width: 24px;
  height: 24px;
  text-align: center;
}

.top-bar .redes a:hover {
  background-color: black;
  color: white;
  border-radius: 5px;
}

.header {
  background-color: black;
  padding-top: 20px;
  padding-bottom: 20px;
}

.header .logo {
  font-size: 26px;
  text-transform: uppercase;
}

.header img {
  width: 45px;
}

#sidebar-close {
  color: lightgray;
  font-size: 18px;
  position: absolute;
  top: 13px;
  right: 10px;
  cursor: pointer;
}

.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  display: block;
  color: #fff;
}

/* Navegación como sidebar (por defecto) */
.main-nav {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: black;
  transition: left 0.3s ease;
  z-index: 1000;
}

.main-nav .logo-sidebar {
  padding: 15px 20px;
  font-size: 15px;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav li {
  border-bottom: 1px solid #444;
}

.main-nav a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
}

.main-nav a:hover {
  background-color: #444;
}

/* Mostrar menú al activarse */
.main-nav.active {
  left: 0;
}

/* Estilos en pantallas grandes */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    left: auto;
  }
  .main-nav ul {
    display: flex;
    gap: 20px;
  }
  .main-nav li {
    border: none;
  }
  .main-nav a {
    padding: 10px 0;
    font-weight: bold;
  }
  .main-nav a:hover {
    background-color: transparent;
    color: var(--red);
  }
}
.newsletter {
  padding: 80px 0;
}
.newsletter input {
  border: 1px solid var(--black);
  padding: 9px 20px;
  background-color: transparent;
  color: var(--black);
  width: 100%;
}
.newsletter input::placeholder {
  color: var(--black);
  font-size: 14px;
  opacity: 1; /* Asegura que el color blanco se vea */
}
.newsletter form {
  max-width: 800px;
  margin: 0 auto;
}

footer {
  background: var(--black);
  padding: 100px 0;
}
footer img {
  width: 45px;
}
footer .logo {
  font-size: 26px;
  text-transform: uppercase;
}
footer .links a {
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  margin: 0 10px;
  font-size: 12px;
}
footer .links a:hover {
  color: var(--red);
}
footer .contacto i {
  color: var(--red);
}
footer .redes a {
  color: var(--red);
  margin: 0 10px;
}
footer .redes a:hover {
  color: var(--white);
}

.copy {
  background: var(--red);
  font-size: 12px;
  color: var(--white);
  font-weight: bold;
}

.home-page p {
  font-size: 15px;
}

.hero-section {
  background-image: url("/images/hero-home-1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0;
}
.hero-section .slogan {
  font-size: 60px;
  text-transform: uppercase;
  color: white;
  text-align: center;
  line-height: 54px;
}
.hero-section .brush-bg {
  color: #FA481C;
  padding: 0 10px;
  background-image: url("https://endurer.qodeinteractive.com/wp-content/uploads/2018/02/titlebackground-image-2.png"); /* Brush-style image */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.hero-section .line-ribbon {
  border: solid 2px white;
  width: 150px;
  margin: 40px auto;
}
.hero-section a span {
  color: var(--green);
  font-size: 22px;
}

.section-goals {
  background: var(--black);
  padding: 20px 0;
}
.section-goals p {
  color: white;
}
.section-goals .titulo {
  font-weight: bold;
  text-transform: uppercase;
}
.section-goals .separator {
  border-bottom: solid 3px var(--white);
  width: 30px;
  margin: 5px 0 10px 0;
}

.new-event {
  position: relative;
  width: 100%;
  background-image: url("/images/trail-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
  padding: 80px 0;
}
.new-event .overlay {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.new-event .content {
  position: relative;
  z-index: 2;
}
.new-event .contactanos {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}
.new-event .titulo {
  font-size: 34px;
  text-transform: uppercase;
  font-weight: bold;
}
.new-event .separator {
  border-bottom: solid 3px var(--red);
  width: 80px;
  margin: 20px auto;
}
.new-event .ficha-evento .header-image {
  background-image: url("/images/new-trail-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  border-radius: 10px 10px 0 0;
}
.new-event .ficha-evento .contenido-principal {
  text-align: left;
  background: #202020;
  padding: 30px 20px;
}
.new-event .ficha-evento .contenido-principal h4 {
  color: var(--light);
}
.new-event .ficha-evento .titulo-contenido {
  font-weight: bold;
}
.new-event .ficha-evento .contenido-principal .lista p {
  display: flex;
}
.new-event .ficha-evento .lista .icono-lista {
  margin-right: 10px;
}
.new-event .ficha-evento .ficha-footer {
  background: #424242;
  border-top: dashed 2px var(--red);
  padding: 30px 20px;
}
.new-event .ficha-evento .precio {
  font-weight: bold;
  font-size: 36px;
  font-style: italic;
  color: var(--green);
}
.new-event .ficha-evento .ticket {
  font-size: 16px;
  font-weight: 400;
}

.section-banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 100px 0;
}
.section-banner::before, .section-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.section-banner::before {
  background-image: url("/images/h1-parallax-3.jpg");
  opacity: 0.1;
}
.section-banner::after {
  background-image: url("/images/textures-bg-white.jpg");
  opacity: 0.4;
}
.section-banner .separator {
  border-bottom: solid 3px var(--red);
  width: 80px;
  margin: 15px 0 30px 0;
}

.video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 100px 0;
}
.video-section .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 0;
}
.video-section .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.video-section .video-content {
  z-index: 2;
}
.video-section .video-content .contactanos {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}
.video-section .video-content .titulo {
  font-size: 34px;
  text-transform: uppercase;
  font-weight: bold;
}
.video-section .video-content .separator {
  border-bottom: solid 3px var(--red);
  width: 80px;
  margin: 40px auto;
}
.video-section .video-content .parrafo {
  color: var(--muted);
}
.video-section .video-content a span {
  font-size: 22px;
}

.last-event {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 100px 0 0 0;
}
.last-event::before, .last-event::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.last-event::before {
  background-image: url("/images/trail-2.jpg");
  opacity: 0.1;
}
.last-event::after {
  background-image: url("/images/textures-bg-white.jpg");
  opacity: 0.4;
}
.last-event .contactanos {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}
.last-event .titulo {
  font-size: 34px;
  text-transform: uppercase;
  font-weight: bold;
}
.last-event .separator {
  border-bottom: solid 3px var(--red);
  width: 80px;
  margin: 20px auto;
}
.last-event .parent {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.last-event .div1,
.last-event .div2,
.last-event .div3,
.last-event .div4,
.last-event .div5 {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.last-event .div1 {
  grid-area: 1/1/2/2;
  background: url("https://endurer.qodeinteractive.com/wp-content/uploads/2018/02/h2-img-6.jpg") no-repeat center center;
}
.last-event .div2 {
  grid-area: 2/1/3/2;
  background: url("https://endurer.qodeinteractive.com/wp-content/uploads/2018/02/h2-img-10.jpg") no-repeat center center;
}
.last-event .div3 {
  grid-area: 3/1/4/2;
  background: url("https://endurer.qodeinteractive.com/wp-content/uploads/2018/02/h2-img-9.jpg") no-repeat center center;
}
.last-event .div4 {
  grid-area: 4/1/5/2;
  background: url("https://endurer.qodeinteractive.com/wp-content/uploads/2018/02/h2-img-7.jpg") no-repeat center center;
}
.last-event .div5 {
  grid-area: 5/1/6/2;
  background: url("https://endurer.qodeinteractive.com/wp-content/uploads/2018/02/h2-img-8.jpg") no-repeat center center;
}

@media (min-width: 768px) {
  .new-event .ficha-evento {
    display: flex;
  }
  .new-event .ficha-evento .header-image {
    height: auto;
    width: 500px;
    border-radius: 10px 0 0 10px;
  }
  .new-event .ficha-evento .contenido-principal {
    width: 100%;
  }
  .new-event .ficha-evento .ficha-footer {
    border-top: transparent;
    border-left: dashed 2px var(--red);
    border-radius: 0 10px 10px 0;
    width: 100%;
    max-width: 242px;
  }
  .last-event {
    /* ocupa 2 filas */
  }
  .last-event .parent {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .last-event .div1 {
    grid-area: 1/1/2/2;
  }
  .last-event .div2 {
    grid-area: 1/3/2/4;
  }
  .last-event .div3 {
    grid-area: 2/1/3/2;
  }
  .last-event .div4 {
    grid-area: 2/3/3/4;
  }
  .last-event .div5 {
    grid-area: 1/2/3/3;
    height: 100%;
    background-size: cover;
  }
}
#countdown .numeros {
  font-size: 50px;
  color: var(--green);
  font-weight: bold;
}
#countdown .texto {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 10px;
}
#countdown .separador {
  font-size: 30px;
  color: var(--green);
  margin-top: 14px;
  font-weight: 600;
}

.tabs-wrap .button-tab {
  background-color: var(--fondo);
  border: solid thin rgba(var(--black-rgb), 0.1);
  padding: 4px 10px;
  border-radius: 3px;
  width: 100%;
}
.tabs-wrap .button-tab.active {
  background-color: var(--green);
  color: white;
  border-color: var(--accent);
  border-radius: 0.25rem;
}
.tabs-wrap .button-tab:hover {
  background-color: var(--light);
  color: var(--green);
}
.tabs-wrap .button-tab:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--green-rgb), 0.2); /* Resalta el borde al hacer clic */
}
.tabs-wrap .tab-content {
  margin-top: 20px;
  padding: 30px 50px;
  box-shadow: 0px 0px 18px 2px rgba(186, 186, 186, 0.4);
  -webkit-box-shadow: 0px 0px 18px 2px rgba(186, 186, 186, 0.4);
  -moz-box-shadow: 0px 0px 18px 2px rgba(186, 186, 186, 0.4);
}
.tabs-wrap .tab-content .lista p {
  display: flex;
}
.tabs-wrap .tab-content .lista .icono-lista {
  margin-right: 10px;
}
.tabs-wrap .tab-content .precio b {
  color: var(--green);
  font-size: 20px;
}
.tabs-wrap .tab-content .lista-circular {
  list-style: none; /* Quitamos la viñeta por defecto */
  padding-left: 1.5rem;
}
.tabs-wrap .tab-content .lista-circular li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
}
.tabs-wrap .tab-content .lista-circular li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  background-color: black;
  border-radius: 50%;
  transform: translateY(-50%);
}
.tabs-wrap .tab-content .tienda-linea {
  color: var(--green);
  font-weight: bold;
  font-size: 20px;
  text-decoration: underline;
}
.tabs-wrap .tab-content .tienda-linea:hover {
  color: var(--blue);
}

.playera-wrap .playera-icono {
  width: 26px;
}
.playera-wrap .imagenes img {
  width: 100%;
}
.playera-wrap .imagenes span {
  background: var(--dark-blue-2);
  color: var(--white);
  padding: 4px 20px;
  width: 150px;
  font-weight: 600;
  text-align: center;
  margin-top: -12px;
  position: relative;
}
.playera-wrap .imagenes span::before {
  content: "";
  border: solid thin var(--blue);
  position: absolute;
  width: calc(100% + 8px);
  height: calc(100% + 6px);
  top: -3px;
  left: -4px;
}

@media (min-width: 768px) {
  #countdown .numeros {
    font-size: 70px;
  }
  #countdown .texto {
    font-size: 14px;
  }
  #countdown .separador {
    margin-top: 27px;
  }
  .button-tab {
    width: 50% !important;
  }
  .ruta-wrap .ruta {
    display: flex;
  }
  .ruta-wrap .ruta img {
    width: 50% !important;
  }
  .ruta-wrap .ruta .lista {
    width: 50% !important;
    padding: 0 20px;
  }
}
/* lg: todos en una fila (auto width) */
@media (min-width: 1202px) {
  .button-tab {
    width: 20% !important;
  }
}
.kit {
  position: relative;
  width: 300px;
  height: auto;
  text-align: center;
  padding: 20px;
  overflow: hidden;
  z-index: 100;
}
.kit img {
  width: 200px;
  margin: auto;
  margin-top: -58px;
}
.kit .distancia {
  font-size: 40px;
}
.kit::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  transform: scale(3);
  background: #FE0101;
  border-radius: 50%;
  left: -70px;
  top: -50px;
  transition: 0.5s;
  z-index: -1;
}
.kit:hover::before {
  transform: scale(7);
}
.kit .cart-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  transition: 0.5s;
  color: #FE0101;
}
.kit:hover .cart-icon {
  color: white;
}
.kit .costo {
  background: red;
  border: solid thin red;
  color: white;
  padding: 5px 20px;
  font-weight: 900;
  transition: 0.3s;
}
.kit .agregar {
  background: red;
  border: solid thin red;
  color: white;
  padding: 5px 20px;
  font-weight: 900;
  transition: 0.3s;
  margin-top: 7px;
  width: 100%;
}
.kit .agregar:hover {
  background: transparent;
  color: red;
}

.docek::before {
  background: #FFDC2B;
}
.docek .cart-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  transition: 0.5s;
  color: #FFDC2B;
}
.docek:hover .cart-icon {
  color: black;
}
.docek .costo {
  background: #FFDC2B;
  color: black;
  border: solid thin #FFDC2B;
}
.docek .agregar {
  background: #FFDC2B;
  color: black;
  border: solid thin #FFDC2B;
}
.docek .agregar:hover {
  background: transparent;
  color: black;
}

.seisk::before {
  background: var(--fondo);
}
.seisk .cart-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  transition: 0.5s;
  color: var(--fondo);
}
.seisk:hover .cart-icon {
  color: black;
}
.seisk .costo {
  background: var(--fondo);
  color: black;
  border: solid thin var(--fondo);
}
.seisk .agregar {
  background: var(--fondo);
  color: black;
  border: solid thin var(--fondo);
}
.seisk .agregar:hover {
  background: transparent;
  color: black;
}

.participa {
  position: relative;
  padding: 90px 0;
}
.participa::before {
  position: absolute;
  content: "";
  background: url("https://runcrew.ancorathemes.com/wp-content/uploads/2024/11/image-04-copyright.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.participa::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--black);
  top: 0;
  left: 0;
  opacity: 0.3;
}
.participa .romboide-bg {
  background: url("https://cdn-icons-png.flaticon.com/512/5870/5870896.png") no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  z-index: 100;
  position: relative;
  padding: 20px 100px;
  margin: auto;
}
.participa .contenido p {
  font-size: 12px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .kit {
    width: 220px;
  }
  .card-kits {
    display: flex;
  }
}
@media (min-width: 992px) {
  .kit {
    width: 300px;
  }
  .participa .romboide-bg {
    max-width: 800px;
    padding: 20px 200px;
  }
}

/*# sourceMappingURL=styles.css.map */
