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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Visby Medium", sans-serif;
  line-height: 1.6;
  color: #F5F5F5;
  background-color: #121212;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Neon Solid", sans-serif;
  color: #F5F5F5;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
@media (min-width: 767px) {
  h1 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 4.5rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (min-width: 767px) {
  h2 {
    font-size: 2.8rem;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 3.5rem;
  }
}

p {
  margin-bottom: 1rem;
}

a {
  color: #CC2936;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #FF7A00;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
  text-align: center;
}
.section h2 {
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #CC2936;
  color: #F5F5F5;
}
.btn-primary:hover {
  background-color: rgb(161.5346938776, 32.4653061224, 42.7591836735);
  transform: translateY(-3px);
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}
.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #F5F5F5;
  border-radius: 5px;
  transition: all 0.3s linear;
  transform-origin: 1px;
}
@media (min-width: 767px) {
  .hamburger-menu {
    display: none;
  }
}

.hamburger-menu.open span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger-menu.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #F5F5F5;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #363636;
  border-radius: 5px;
  background-color: #363636;
  color: #F5F5F5;
  font-size: 1rem;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=tel]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #CC2936;
  box-shadow: 0 0 0 3px rgba(204, 41, 54, 0.5);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 5px;
  background-color: rgb(227.7224489796, 119.2775510204, 127.9265306122);
  color: #F5F5F5;
  font-weight: bold;
}

.accordion-item {
  margin-bottom: 1rem;
  border: 1px solid #363636;
  border-radius: 5px;
  overflow: hidden;
}
.accordion-item .accordion-header {
  background-color: #363636;
  color: #F5F5F5;
  padding: 1rem 1.5rem;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-item .accordion-header::after {
  content: "+";
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.accordion-item .accordion-header.active::after {
  transform: rotate(45deg);
}
.accordion-item .accordion-content {
  padding: 0 1.5rem;
  background-color: rgb(41.25, 41.25, 41.25);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.accordion-item .accordion-content p {
  padding-bottom: 1rem;
}

.navbar {
  background-color: rgba(18, 18, 18, 0.8);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #CC2936;
}
.navbar .nav-links {
  display: none;
  flex-direction: column;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(18, 18, 18, 0.95);
  padding: 1rem 0;
}
.navbar .nav-links.active {
  display: flex;
}
.navbar .nav-links li {
  text-align: center;
  margin: 0.5rem 0;
}
.navbar .nav-links li a {
  color: #F5F5F5;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  display: block;
}
.navbar .nav-links li a:hover {
  color: #CC2936;
}
@media (min-width: 767px) {
  .navbar .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background-color: transparent;
    width: auto;
    padding: 0;
  }
  .navbar .nav-links li {
    margin: 0 1rem;
  }
}

.footer {
  background-color: #363636;
  color: #F5F5F5;
  padding: 3rem 0;
  text-align: center;
}
.footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 767px) {
  .footer .footer-content {
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
  }
}
.footer .footer-logo img {
  max-width: 150px;
}
.footer .contact-info h3, .footer .social-links h3, .footer .legal-links h3 {
  color: #CC2936;
  margin-bottom: 1rem;
}
.footer .contact-info ul, .footer .social-links ul, .footer .legal-links ul {
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 767px) {
  .footer .contact-info ul, .footer .social-links ul, .footer .legal-links ul {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .contact-info li a, .footer .social-links li a, .footer .legal-links li a {
  color: #F5F5F5;
}
.footer .contact-info li a:hover, .footer .social-links li a:hover, .footer .legal-links li a:hover {
  color: #CC2936;
}
.footer .copyright {
  margin-top: 2rem;
  border-top: 1px solid rgba(245, 245, 245, 0.1);
  padding-top: 1rem;
  font-size: 0.9rem;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5F5F5;
  text-align: center;
  overflow: hidden;
}
.hero-section .hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.hero-section .hero-video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0.6), rgba(18, 18, 18, 0.8));
}
.hero-section #particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0; /* Asegura que esté detrás del contenido pero encima del video/imagen */
}
.hero-section .hero-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero-section .hero-content {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
.hero-section .hero-content .hero-logo {
  max-width: 80%;
  height: auto;
  margin: 0 auto 2rem;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInScale 1.5s ease-out forwards;
}
@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-section .hero-content h2 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
@media (min-width: 767px) {
  .hero-section .hero-content h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-section .hero-content h2 {
    font-size: 2rem;
  }
}

.problem-solution-section {
  background-color: #363636;
}
.problem-solution-section .solution-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 767px) {
  .problem-solution-section .solution-points {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.problem-solution-section .solution-points .point {
  flex: 1 1 45%;
  background-color: #121212;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.problem-solution-section .solution-points .point img {
  margin: 0 auto 1rem;
}
.problem-solution-section .solution-points .point h3 {
  color: #CC2936;
  margin-bottom: 0.5rem;
}

.services-section {
  background-color: #121212;
}
.services-section .service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 767px) {
  .services-section .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
.services-section .service-item {
  background-color: #363636;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.services-section .service-item img {
  margin: 0 auto 1rem;
}
.services-section .service-item h3 {
  color: #FF7A00;
  margin-bottom: 0.5rem;
}

.philosophy-section {
  background-color: #363636;
}
.philosophy-section .philosophy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .philosophy-section .philosophy-content {
    flex-direction: row;
    text-align: left;
  }
}
.philosophy-section .trainer-photo {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
@media (min-width: 1024px) {
  .philosophy-section .trainer-photo {
    margin-right: 2rem;
  }
}
.philosophy-section .text-content h2 {
  color: #CC2936;
}

.testimonials-section {
  background-color: #121212;
}
.testimonials-section .testimonial-carousel {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1.5rem;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.testimonials-section .testimonial-carousel::-webkit-scrollbar {
  display: none;
}
.testimonials-section .testimonial-item {
  flex: 0 0 90%;
  scroll-snap-align: start;
  background-color: #363636;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}
@media (min-width: 767px) {
  .testimonials-section .testimonial-item {
    flex: 0 0 45%;
  }
}
@media (min-width: 1024px) {
  .testimonials-section .testimonial-item {
    flex: 0 0 30%;
  }
}
.testimonials-section .testimonial-item .client-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid #CC2936;
}
.testimonials-section .testimonial-item .quote {
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonials-section .testimonial-item .client-name {
  font-weight: bold;
  color: #FF7A00;
}
.testimonials-section .carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.testimonials-section .carousel-nav button {
  background-color: #CC2936;
  color: #F5F5F5;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}
.testimonials-section .carousel-nav button:hover {
  background-color: rgb(161.5346938776, 32.4653061224, 42.7591836735);
}

.cta-section {
  background: linear-gradient(to right, #CC2936, #FF7A00);
  color: #F5F5F5;
}
.cta-section .contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
  background-color: rgba(18, 18, 18, 0.7);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq-section {
  background-color: #121212;
}
.faq-section .accordion {
  max-width: 800px;
  margin: 2rem auto;
}

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