@charset "UTF-8";
/* --- VARIABLES SASS --- */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos Base*/
body {
  font-family: "Open Sans", sans-serif;
  color: #1a1a1a;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

/* --- MIXIN SASS ---
         * Este mixin reutiliza el efecto de elevación con sombra
         * que comparten las tarjetas y algunos botones.
         */
/* Navigation */
.navbar {
  transition: all 0.4s ease;
  padding: 1rem 0;
  background-color: transparent;
}
.navbar.scrolled {
  background-color: rgba(26, 26, 26, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}
.navbar .navbar-brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: white !important;
}
.navbar .navbar-brand span {
  color: #f37021;
}
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 10px;
  transition: color 0.3s;
}
.navbar .nav-link:hover {
  color: #f37021 !important;
}
.navbar .btn-inscribirse {
  background-color: #f37021;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 24px;
  transition: transform 0.3s, background-color 0.3s;
}
.navbar .btn-inscribirse:hover {
  background-color: rgb(213.4615384615, 87.5, 11.5384615385);
  transform: translateY(-2px);
  color: white;
}

/* Home Section */
.home {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url(../images/fondo1.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}
.home .home-content {
  text-align: center;
  color: white;
  margin-top: 50px;
}
.home .home-content h1 {
  font-size: 4.5rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .home .home-content h1 {
    font-size: 3rem;
  }
}
.home .home-content .date-location {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.home .home-content .date-location i {
  color: #f37021;
  margin-right: 10px;
}
.home .home-content .btn-hero {
  background-color: #f37021;
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 15px 40px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 5px 15px rgba(243, 112, 33, 0.4);
}
.home .home-content .btn-hero:hover {
  background-color: rgb(213.4615384615, 87.5, 11.5384615385);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(243, 112, 33, 0.6);
}

/* About Section */
.about-section {
  padding: 100px 0;
  background-color: white;
}
.about-section .section-title {
  color: #2c5e3b;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.about-section .feature-box {
  text-align: center;
  padding: 30px;
  margin-top: 30px;
}
.about-section .feature-box i {
  font-size: 3rem;
  color: #2c5e3b;
  margin-bottom: 20px;
}
.about-section .feature-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

/* Distances Section */
.distances-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}
.distances-section .section-title {
  text-align: center;
  margin-bottom: 60px;
  color: #1a1a1a;
}
.distances-section .section-title span {
  color: #f37021;
}
.distances-section .card-distance {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  /* Aplicación del Mixin SASS */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.distances-section .card-distance:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.distances-section .card-distance .card-header {
  background-color: #2c5e3b;
  color: white;
  text-align: center;
  padding: 20px;
  border-bottom: none;
}
.distances-section .card-distance .card-header h3 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 2px;
}
.distances-section .card-distance .card-body {
  padding: 30px;
  text-align: center;
}
.distances-section .card-distance .card-body .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 5px;
}
.distances-section .card-distance .card-body .payments {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.distances-section .card-distance .card-body .info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.distances-section .card-distance .card-body .info-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
}
.distances-section .card-distance .card-body .info-list li i {
  color: #f37021;
  width: 25px;
}
.distances-section .card-distance .card-body .info-list li:last-child {
  border-bottom: none;
}
.distances-section .card-distance .card-body .btn-card {
  width: 100%;
  border: 2px solid #2c5e3b;
  color: #2c5e3b;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px;
  transition: all 0.3s;
}
.distances-section .card-distance .card-body .btn-card:hover {
  background-color: #2c5e3b;
  color: white;
}

/* Inscripción Section */
.cta-section {
  padding: 80px 0;
  background-color: #2c5e3b;
  color: white;
  text-align: center;
}
.cta-section h2 {
  margin-bottom: 20px;
}
.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}
.cta-section .btn-cta {
  background-color: #f8f9fa;
  color: #2c5e3b;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  /* Aplicación del Mixin SASS */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-section .btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: white;
  padding: 60px 0 30px;
}
footer h5 {
  color: #f37021;
  margin-bottom: 20px;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
footer ul li a:hover {
  color: #f37021;
}
footer .social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s;
}
footer .social-links a:hover {
  background-color: #f37021;
  transform: translateY(-3px);
}
footer .copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

body.layout-flex {
  display: flex;
  flex-direction: column;
}
body.layout-flex .coming-soon-section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url(../images/fondo3.jpg) no-repeat center center;
  background-size: cover;
  padding: 100px 20px 40px;
  text-align: center;
}
body.layout-flex .coming-soon-section .coming-soon-content {
  max-width: 900px;
}
body.layout-flex .coming-soon-section .coming-soon-title {
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  margin: 0;
  line-height: 1.3;
  font-size: 3.5rem;
}
body.layout-flex {
  /* MEDIA QUERIES PARA RESPONSIVIDAD */
  /* Dispositivos Medianos  */
}
@media (max-width: 992px) {
  body.layout-flex .coming-soon-section .coming-soon-title {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }
}
body.layout-flex {
  /* Dispositivos Pequeños */
}
@media (max-width: 768px) {
  body.layout-flex .coming-soon-section .coming-soon-title {
    font-size: 2.2rem;
  }
}
body.layout-flex {
  /* Dispositivos Extra Pequeños */
}
@media (max-width: 576px) {
  body.layout-flex .coming-soon-section .coming-soon-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
}

.page-circuitos {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url("../images/fondo6.jpg");
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.page-circuitos .circuitos-main {
  flex-grow: 1;
}
.page-circuitos .grid-container {
  padding: 120px 5% 80px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.page-circuitos .grid-container .section-title {
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 3rem;
}
.page-circuitos .grid-container .section-title span {
  color: #f37021;
}
.page-circuitos .grid-circuitos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.page-circuitos .grid-circuitos .grid-item {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-circuitos .grid-circuitos .grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
.page-circuitos .grid-circuitos .grid-item .item-header {
  text-align: center;
  margin-bottom: 1rem;
}
.page-circuitos .grid-circuitos .grid-item .item-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.page-circuitos .grid-circuitos .grid-item .item-header p {
  color: #6c757d;
  margin: 0;
}
.page-circuitos .grid-circuitos .grid-item .img-circuito {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  margin-top: 1rem;
}
.page-circuitos .grid-circuitos .grid-item .img-circuito:hover {
  transform: scale(1.02);
}
.page-circuitos .grid-circuitos .grid-item.item-5k h3 {
  color: #2c5e3b;
}
.page-circuitos .grid-circuitos .grid-item.item-14k h3 {
  color: #f37021;
}
.page-circuitos .grid-circuitos .grid-item.item-30k h3 {
  color: #1a1a1a;
}
.page-circuitos {
  /* MEDIA QUERIES PARA GRID */
}
@media (max-width: 992px) {
  .page-circuitos .grid-circuitos {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .page-circuitos .grid-circuitos {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/*# sourceMappingURL=styles.css.map */
