/* styles.css */

body {
  margin: 0;
  font-family: 'roboto', sans-serif;
  background-color: #0f0f0f;
  color: white;
}

.navbar {
  background-color: #272727; 
  padding: 1rem;
  transition: background-color 0.3s ease;
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 00.1px 1px;
}

.navbar img {
  width: auto;
  height: 90px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 10px;
}

.navbar h2{
  padding-left: 15px;
}

navbar

figure img{
    border-radius: 15px;
    box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.514);
}

html {
    scroll-behavior: smooth; 
}

html::-webkit-scrollbar{
    width: 7px;
    background-color: rgb(17, 12, 12);
}

html::-webkit-scrollbar-thumb{
    background-color: blueviolet;
    border-radius: 8px;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  margin-top: 70px;            
  height: 70vh;              
  background-size: cover;     
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 5rem 2rem;
  background-image: url('img/hero2.jpeg');
  background-size: cover;
  background-position: center;
}

 
   
.hero h1 {
  font-size: 4rem;
  margin-top: 9rem;
  color: #ffffff;
  -webkit-text-stroke: 3px #6a0dad;
}

.cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #6a0dad;
  transform: scale(1.1);
  border: 2px solid #6a0dad;
}

.about {
  background-color: #1a1a1a;
  padding: 4rem 2rem;
  color: white;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-content img {
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(106, 13, 173, 0.5);
}

.about-text {
  max-width: 500px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #6a0dad;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.services {
  background-color: #0f0f0f;
  padding: 4rem 2rem;
  color: white;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #6a0dad;
  
}

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

.card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 2rem;
  max-width: 300px;
  box-shadow: 5px 5px 10px rgba(149, 0, 255, 0.685);
  transition: transform 0.3s ease;
}

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

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

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

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #6a0dad;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: #8a2be2;
}



/* Beneficios */
.benefits {
  background-color: #121212;
  padding: 4rem 2rem;
  color: white;
}

.benefits-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.benefits-text {
  max-width: 400px;
}

.benefits-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #6a0dad;
}

.benefits-text ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  line-height: 2;
}

.benefits-image img {
  max-width: 400px;
  border-radius: 10px;
  border: #0f0f0f 2px solid;
  box-shadow: 0 0 10px rgba(149, 19, 241, 0.76);
}

/* Preguntas */
.questions {
  background-color: #1a1a1a;
  padding: 4rem 2rem;
  color: white;
  text-align: center;
}

.questions h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #6a0dad;
}

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

.question {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 2rem;
  max-width: 400px;
  box-shadow: 5px 5px 10px rgba(99, 2, 168, 0.685);
}

.question h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #6a0dad;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #8a2be2;
}

.site-footer {
  background-color: #0f0f0f;
  color: white;
  padding: 3rem 2rem 1rem;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-us, .social-media {
  flex: 1;
  min-width: 250px;
}

.about-us h3, .social-media h3 {
  color: #6a0dad;
  margin-bottom: 1rem;
}

.about-us ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.6;
}

.social-media .icons a {
  margin-right: 1rem;
  font-size: 1.5rem;
  color: white;
  transition: color 0.3s ease;
}

.social-media .icons a:hover {
  color: #6a0dad;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }

  .navbar {
    font-size: 11px;
  }

  .navbar img {
  width: auto;
  height: 40px;
  margin-top: 3px;
  margin-bottom: 3px;
  margin-left: 0px;
  margin-right: 12px;
  }

  .navbar a {
    font-size: 12px;
  }

  .container {
    width: 100%;
  }

  .hero {
  margin-top: 20px;            
  height: 100vh;              
  background-size: cover;     
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  background-image: url('img/hero2.jpeg');
  background-size: cover;
  background-position: center;
}

  .navbar h2 {
    margin-right: 18px;
  }

  .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

  .navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero h1 {
  font-size: 4rem;
  margin-top: 9rem;
  color: #ffffff;
  -webkit-text-stroke: 0px #ffffff;
}

}

@media (max-width: 660px) {
  .hero h1 {
  font-size: 4rem;
  margin-top: 9rem;
  color: #ffffff;
  -webkit-text-stroke: 1px #ffffff;
}
  }


  @media (max-width: 500px) {
  .hero h1 {
  font-size: 4rem;
  margin-top: 9rem;
  color: #ffffff;
  -webkit-text-stroke: 1px #ffffff;
}
  }


    @media (max-width: 400px) {
  .hero h1 {
  font-size: 4rem;
  margin-top: 9rem;
  color: #ffffff;
  -webkit-text-stroke: 1px #ffffff;
}
  }