* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #faf7f5;
  color: #333;
}

/* HERO */
.hero {
  height: 90vh;
  background-image: url("images/banner.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75); /* opacidad baja + elegante */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  letter-spacing: 3px;
  color: #333;
}

.hero p {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #555;
}

/* ABOUT */
.about {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
}


/* CONTENT */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

section {
  margin-bottom: 80px;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.card h3 {
  padding: 15px;
  text-align: center;
  font-weight: 400;
}

/* FOOTER */
footer {
  background: #eee2dc;
  padding: 40px 20px;
  text-align: center;
}

.footer-content p {
  margin: 8px 0;
}

.footer-content a {
  color: #333;
  text-decoration: none;
}

.social {
  margin-top: 15px;
}

.social a {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #333;
}

footer span {
  display: block;
  margin-top: 20px;
  font-size: 0.9rem;
}

/* ABOUT ESTÉTICO */
.about {
  max-width: 780px;
  margin: 90px auto;
  padding: 0 20px;
  text-align: center;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: #333;
  margin: 25px 0;
}

.about p {
  font-size: 1.2rem;        /* un poco más grande */
  line-height: 1.5;            /* más aire */
  color: #666;
  margin-top: 22px;
  font-style: italic;        /* cursiva elegante */
}

.about-highlight {
  margin-top: 30px;
  font-style: italic;
  color: #b76e79; /* rosa elegante */
  font-size: 1.1rem;
}

.about-line {
  display: block;
  width: 60px;
  height: 2px;
  background: #e6b7c1;
  margin: 0 auto;
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: #f7e9ec; /* fondo rosado suave */
}

/* HOW TO BUY */
.how-to-buy {
  background: #f7ecef;
  padding: 90px 20px;
  text-align: center;
}

.how-to-buy h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  margin-bottom: 60px;
  color: #333;
}

.steps {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.step {
  background: white;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.step-number {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #b76e79;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* REVIEWS */
.reviews {
  padding: 90px 20px;
  text-align: center;
  background: #faf7f5;
}

.reviews h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  margin: 30px 0 60px;
  color: #333;
}

.reviews-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.review-card {
  background: white;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  font-style: italic;
}

.review-card span {
  display: block;
  margin-top: 18px;
  font-size: 0.9rem;
  color: #b76e79;
}

.reviews-line {
  display: block;
  width: 60px;
  height: 2px;
  background: #e6b7c1;
  margin: 0 auto;
}
