* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  color: #fff;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.header h1 {
  color: #ff2e88;
  letter-spacing: 2px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

nav a:hover {
  color: #ff2e88;
}

.hero {
  height: 100vh;
  background: url('img/foto1.png') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
}

.hero .content {
  position: relative;
  max-width: 600px;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 30px;
  color: #ccc;
}

.btn {
  background: linear-gradient(45deg, #ff2e88, #ff6fa5);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

.section {
  padding: 100px 40px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0 10px;
}

.card p {
  padding: 0 15px 20px;
  color: #bbb;
}

.card:hover {
  transform: translateY(-10px);
}

.gallery {
  padding: 100px 40px;
  text-align: center;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}

.dark {
  background: #111;
}

.cta {
  background: linear-gradient(45deg, #ff2e88, #ff6fa5);
  padding: 80px 20px;
  text-align: center;
}

footer {
  padding: 30px;
  text-align: center;
  background: #000;
  color: #777;
}