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

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1510626176961-4b57d4fbad03?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  color: white;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  letter-spacing: 4px;
}

.tagline {
  font-size: 18px;
  margin-top: 10px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: white;
  color: black;
}

/* SECCIONES */
.section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  margin-bottom: 20px;
}

/* DARK SECTION */
.dark {
  background: #0f0f0f;
  color: white;
  max-width: 100%;
}

.dark .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 20px;
}

/* CONTACTO */
.contact .email {
  font-weight: bold;
  margin-top: 10px;
}
.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #222;
    font-size: 28px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

/* FOOTER */
footer {
  padding: 30px;
  text-align: center;
  font-size: 12px;
  color: #777;
}
