@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Lora:wght@400;500&display=swap");
body {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("https://images.unsplash.com/photo-1511497584788-876760111969?auto=format&fit=crop&q=80&w=2560");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #424242;
  font-family: "Lora", serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  z-index: 100;
}
header .header-logo img {
  height: 60px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

nav {
  display: flex;
  gap: 15px;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.container {
  width: 90%;
  max-width: 800px;
  margin: 3rem auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  text-align: center;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: #556B2F;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  width: 90%;
  max-width: 1100px;
  margin: 2rem auto 5rem;
}

.card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.card h3 {
  color: #556B2F;
  font-size: 2.2rem;
  margin-top: 0;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #3A4D3F;
  color: white !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
}

/* AJUSTE MÓVIL */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }
  .header-logo img {
    height: 45px;
    margin-bottom: 1rem;
  }
  nav {
    font-size: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  h1 {
    font-size: 1.8rem !important;
  }
  .container {
    padding: 25px 20px;
    width: 95%;
    margin: 1.5rem auto;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
    box-sizing: border-box;
  }
}

/*# sourceMappingURL=main.css.map */