* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: white;
  line-height: 1.6;
}

/* =========================
   HERO
========================= */

.hero {
  height: 100vh;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

/* =========================
   BOTONES
========================= */

.btn {
  background: #ff2d55;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff4d77;
}

/* =========================
   SECCIONES
========================= */

.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

/* =========================
   CARDS
========================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #1c1c1c;
  padding: 30px;
  border-radius: 15px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  background: #252525;
}

.card h3 {
  margin-bottom: 15px;
}

/* =========================
   GALERÍA INDEX
========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* =========================
   CONTACTO
========================= */

.contact {
  text-align: center;
}

.contact p {
  margin-bottom: 10px;
}

.contact .btn {
  display: inline-block;
  margin-top: 25px;
}

/* =========================
   FOOTER
========================= */

footer {
  text-align: center;
  padding: 30px;
  background: #000;
  margin-top: 50px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 60px 20px;
  }
}

/* =========================
   SOCIAL
========================= */

.social-links p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.social-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  color: #ff2d55;
}

.social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* =========================
   BRAND HEADER
========================= */

.brand-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.brand-header h1 {
  margin: 0;
  font-size: 4rem;
}

.main-logo {
  width: 560px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(0,0,0,0.7));
}