* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  padding: 1rem;
}

img {
  max-width: 100%;
  border-radius: 10px
}

img,
svg {
  vertical-align: middle;
}

.container {
  width: 80%;
  margin: 0 auto;
  max-width: 1320px;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.col {
  width: 100%;
}


header {
  background-color: white;
  padding: 0.5rem 0;
  position: sticky;
  top: 0px;
  z-index: 2;
}



.nav_list {
  list-style: none;
  padding: 0;
  background: white;
  width: 90%;
  height: auto;
  max-width: 1000px;
 
  margin: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav_list li a {
  padding: 20px;
  display: block;
}

.nav__item {
  display: inline-block;
  text-align: center;
  margin: 0 0 0 1.5rem;
}

.nav_link {
  color: black;
  text-transform: uppercase;
  text-decoration: none;
}

#intro-section {
  background-image: url(../images/Team.png);
  background-position: center;
  background-repeat: no-repeat;
  border: 20rem;
  background-size: contain;
  background-color: #000;
  padding: 7rem 0 7rem 0;
}




.intro-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.intro-text {
  flex: 1 1 50%;
}

.intro-video {
  flex: 1 1 45%;
  display: flex;
  justify-content: flex-end;
}

.intro-video iframe {
  width: 80%;
  max-width: 800px;
  height: 180px;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.intro-video iframe:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}


.display-2 {
  text-transform: capitalize;
  color: white;
  font-size: 4.5rem;
  font-weight: 400;
}

.display-2-description {
  font-size: 10px;
  display: inline-block;
  font-weight: 100;
  font-family: Montserrat, sans-serif;
}

.download_title {
  text-align: center;
  margin-bottom: 3rem;
  font-style: white;
}

.download_logo-box {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0.5rem;
  width: 500px;
  height: 50px;
  color: white;
}

h2 {
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.footer {
  background-color: none;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #333;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1300px;
  margin: auto;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h4 {
  color: black;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.footer-column ul li {
  margin: 6px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.contact-info img {
  margin-bottom: 10px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: black;
}

.newsletter input[type="email"] {
  width: 100%;
  padding: 8px;
  margin: 10px 0;
  border: 1px solid #ccc;
}

.newsletter button {
  background-color: black;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  width: 100%;
}

.newsletter button:hover {
  background-color: #b00000;
}

.newsletter label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
}

.help_section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  background: white;
  border-radius: 10px;
}

.help_section h1 {
  text-align: center;
  padding: 0 0 20px 0;
  border-bottom: 1px solid silver;
}

.help_section form {
  padding: 0 40px;
  box-sizing: border-box;
}

.loginbox {
  top: 50%;
  left: 50%;
  width: 400px;
  background: white;
  border-radius: 10px;
}

.loginbox h1 {
  text-align: center;
  padding: 7px 7px 15px 7px;
  border-bottom: 2px solid silver;
}

.loginbox form {
  padding: 20px 40px;
  box-sizing: border-box;
}

form .txt_field {
  position: relative;
  border-bottom: 2px solid #adadad;
  margin: 18px 0;
}

.txt_field input {
  width: 100%;
  padding: 0 5px;
  height: 18px;
  font-size: 16px;
  border: none;
  outline: none;
}

.txt_field label {
  position: center;
  top: 50%;
  left: 5px;
  color: #adadad;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
}

.pass {
  margin: -5px 0 20px 5px;
  color: grey;
}

input[type="submit"] {
  width: 100%;
  height: 50px;
  border: 1px solid;
  background: #adadad;
  border-radius: 25px;
  font-size: 18px;
  color: white;
  font-weight: 700;
  outline: none;
}

section {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

article {
  display: flex;
  flex: 0 1 300px;
  flex-direction: column;
  border: 1px solid white;
  border-radius: 1rem;
  padding: 2rem;
}

article img {
  order: -1;
  align-self: center;
  border-radius: 1rem;
}

article button {
  background: white;
  color: black;
  padding: 0.5rem;
  border: none;
  border-radius: 1rem;
  font-size: 1.2rem;
  cursor: pointer;
}

article h2 {
  color: white;
}

article p {
  color: white;
}

iframe {
  position: center;
}



/* Centrar el iframe del video */
.center-video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem auto 2rem auto; /* más espacio arriba */
  width: 100%;
  padding-top: 4rem;
}


/* Ajustes opcionales para el h1 y textos de bienvenida */
.display-2 {
font-family: 'Montserrat', sans-serif;
font-size: 2.5rem;
font-weight: 700;
line-height: 1.3;
text-align: center;
margin-top: 4rem;
}

.display-2-intro {
display: block;
font-size: 3rem;
color: white; /* o tu color de marca */
margin-bottom: 1rem;
}

.display-2-description {
display: block;
font-size: 1.25rem;
color: white;
max-width: 700px;
margin: 0 auto;
}

.contact-section {
padding: 4rem 2rem;
background-color: #f9f9f9;
font-family: 'Montserrat', sans-serif;
}

.contact-section form {
max-width: 600px;
margin: 0 auto;
display: flex;
flex-direction: column;
}

.contact-section input,
.contact-section textarea {
padding: 0.8rem;
margin-bottom: 1rem;
border: 1px solid #ccc;
border-radius: 6px;
}

.contact-section button {
background-color: #e63946;
color: white;
padding: 0.8rem;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 1rem;
}

.contact-section button:hover {
background-color: #c92234;
}

.justified-text {
display: block;
text-align: justify;
}

.newsletter textarea {
width: 100%;
margin: 10px 0;
border: 1px solid #ccc;
resize: vertical;
font-family: 'Montserrat', sans-serif;
}

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

body {
  padding: 0.5rem;
}

.container {
  width: 95%;
}

header {
  padding: 0.5rem;
}



.nav__item {
  margin: 0.5 rem 0;
}

#intro-section {
  background-size: cover;
  background-position: center;
  padding: 4rem 1rem;
}

.display-2 {
  font-size: 2rem;
  margin-top: 2rem;
}

.display-2-intro {
  font-size: 2.4rem;
}

.display-2-description {
  font-size: 0.95rem;
  padding: 0 0.5rem;
  text-align: justify;
}

.footer-container {
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
}

.footer-column {
  min-width: 100%;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  font-size: 0.95rem;
}

.newsletter textarea,
.newsletter input[type="email"],
.newsletter button {
  font-size: 1rem;
}

.newsletter label {
  font-size: 0.85rem;
}

.social-icons a {
  font-size: 1.2rem;
  margin-right: 8px;
}

form label {
  display: block;
  margin-bottom: 0.8rem;
}

.contact-info p {
  font-size: 0.95rem;
}


/* Dropdown styles */
.dropdown {
position: relative;
display: inline-block;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
padding: 12px 16px;
z-index: 1;
}


.dropdown {
position: relative;
display: inline-block;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
padding: 12px 16px;
z-index: 1;
}

.dropdown:hover .dropdown-content {
display: block;
}
}

.training-cards {
  padding: 4rem 2rem;
  background-color: #f5f5f5;
  text-align: center;
}


.training-cards .section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: black
}


.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}


.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 1.5rem;
  max-width: 300px;
  flex: 1 1 250px;
  text-align: center;
  transition: transform 0.3s ease;
}


.card:hover {
  transform: translateY(-5px);
}


.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}


.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: black;
}


.card p {
  font-size: 1rem;
  color: #555;
}

.user-reviews {
  padding: 4rem 2rem;
  background-color: #fefefe;
  text-align: center;
}


.user-reviews .section-title {
  font-size: 2.5rem;
  color: black;
  margin-bottom: 2rem;
}


.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}


.review-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 2rem;
  max-width: 300px;
  transition: transform 0.3s ease;
}


.review-card:hover {
  transform: translateY(-5px);
}


.review-text {
  font-style: italic;
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
}


.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}


.review-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}


.review-author span {
  font-weight: bold;
  color: #111;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  margin: auto;
}


.carousel__track-container {
  position: relative;
  height: auto;
  overflow: hidden;
}


.carousel__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 0;
  margin: 0;
}


.carousel__slide {
  min-width: 100%;
  list-style: none;
}


.carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
}


/* Botones del carrusel */
.carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  padding: 10px;
  color: white;
  cursor: pointer;
  z-index: 2;
}


.carousel__button--right {
  right: 10px;
}

.carousel__button--left {
  left: 10px;
}


/* Indicadores */
.carousel__nav {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}


.carousel__indicator {
  width: 10px;
  height: 10px;
  background-color: lightgray;
  border-radius: 50%;
  margin: 0 5px;
  border: none;
  cursor: pointer;
}


.carousel__indicator.current-slide {
  background-color: black;
}

.carousel {
  position: relative;
  overflow: hidden;
}


.carousel__overlay {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 80%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4); /* Fondo semitransparente opcional */
  border-radius: 1rem;
}


.carousel__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}


.carousel__subtitle {
  font-size: 1.2rem;
}




.btn-rounded { 
  display: inline-block;
  padding: 12px 24px;
  background-color: black;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-rounded :hover {

  background-color: rgb(91, 94, 94); 
}




.login {
  max-width: 400px;
  margin: 50px auto;
  padding: 2rem;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  font-family: 'Montserrat', sans-serif;
}

.login h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #d32f2f;
}

.login label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.login input,
.login select {
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}

.login input:focus,
.login select:focus {
  border-color: black;
}

.login button {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  border: none;
  border-radius: 15px;
  background-color: black;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.login button:hover {
  background-color: #444242;
}

.footer .newsletter {
  flex: 1 1 200px;
}





.footer .newsletter input[type="email"],
.footer .newsletter textarea {
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 0.7rem 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: border 0.3s;
}



.footer .newsletter textarea {
  resize: vertical;
  min-height: 100px;
}

.footer .newsletter input[type="checkbox"] {
  margin-right: 0.5rem;
}

.footer .newsletter label {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #555;
  display: flex;
  align-items: center;
}

.footer .newsletter button {
  background-color: black;
  color: #fff;
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.footer .newsletter button:hover {
  background-color: black;
}

#productForm {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 2rem auto;
  font-family: 'Montserrat', sans-serif;
}


#productForm label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}


#productForm input,
#productForm textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
}


#productForm button {
  background-color: black;
  color: white;
  border: none;
  border-radius: 15px;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}


#productForm button:hover {
  background-color: #333;
}


.custom-products {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f8f8f8;
  border-radius: 10px;
}


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


.custom-products li {
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.custom-products button.delete-btn {
  background: #e63946;
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
}


.custom-products button.delete-btn:hover {
  background: #c92234;
}

.review-carousel {
  background-color: #111;
  color: white;
  padding: 40px 20px;
  text-align: center;
  overflow: hidden;
}


.review-carousel .section-title {
  color: #fff;
  margin-bottom: 30px;
}


.carousel-track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}


.review-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}


.review-card:hover {
  transform: translateY(-5px);
}


.user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid #fbbf24;
}


.review-card .stars {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 10px;
}


.review-text {
  font-style: italic;
  margin-bottom: 10px;
}


.review-meta {
  color: #ccc;
  font-size: 14px;
}


/* Dots */
.carousel-dots {
  margin-top: 20px;
}


.carousel-dots button {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border: none;
  border-radius: 50%;
  background-color: #888;
  cursor: pointer;
  transition: background-color 0.3s;
}


.carousel-dots button.active {
  background-color: #fbbf24;
}


/* Responsive */
@media (max-width: 1024px) {
  .review-card {
    width: 45%;
  }
}


@media (max-width: 768px) {
  .review-card {
    width: 100%;
  }
}
