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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
}

header {
  background-color: #111;
  padding: 12px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo {
  height: 120px;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background-image: url('img/hero-vibra.png');
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 50px;
  text-align: center;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;  /* Volvemos a la fuente original */
  font-size: 4.2rem;                      /* Tamaño más grande */
  font-weight: 700;
  color: #fcd34d;
  text-align: center;
  line-height: 1.2;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 10px;
  word-break: break-word;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.card i {
  font-size: 2.5em;
  color: #fcd34d;
  margin-bottom: 15px;
}

.cta {
  background-color: #222;
  padding: 50px 20px;
  text-align: center;
}

.cta .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background-color: #fcd34d;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.cta .btn:hover {
  background-color: #eab308;
}

footer {
  background-color: #111;
  padding: 30px;
  text-align: center;
}

footer .social a {
  margin: 0 10px;
  color: #fcd34d;
  font-size: 1.5em;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-buttons .btn {
  background-color: #fcd34d;
  color: black;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-buttons .btn:hover {
  background-color: #eab308;
}

.nosotros-columns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.nosotros-card {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease;
}

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

.nosotros-card h3 {
  color: #fcd34d;
  margin-bottom: 10px;
}

.nosotros-img {
  margin-top: 40px;
  text-align: center;
}

.nosotros-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .nosotros-columns {
    flex-direction: column;
    align-items: center;
  }
}


@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    height: 80px;
    margin-bottom: 10px;
  }

  nav a {
    display: block;
    margin: 10px 0;
    font-size: 1.2em;
  }

  .hero h1 {
    font-size: 2.2em;
    padding: 0 15px;
  }

  .card {
    width: 90%;
  }

  .cta h2 {
    font-size: 1.5em;
    padding: 0 15px;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
