/* ===============================
   VARIABLES DE MARCA
================================ */
:root{
  --primary:#c9a27e;        /* dorado suave */
  --accent:#d9a3b3;         /* rosa pastel */
  --accent-hover:#c27a92;
  --dark:#1f1f1f;
  --light:#faf8f6;
  --text:#333;
}

/* ===============================
   RESET
================================ */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Inter,sans-serif;
  background:var(--light);
  color:var(--text);
  line-height:1.7;
}

/* ===============================
   TIPOGRAFÍA
================================ */
h1,h2,h3{
  font-family:"Playfair Display",serif;
  color:var(--dark);
}

h1{font-size:2.6rem}
h2{font-size:2.1rem}
h3{font-size:1.3rem}

/* ===============================
   LINKS
================================ */
a{
  color:var(--accent);
  text-decoration:none;
  font-weight:500;
  transition:color .3s ease;
}

a:hover{
  color:var(--accent-hover);
}

/* ===============================
   LAYOUT GENERAL
================================ */
header{
  text-align:center;
  padding:4.5rem 10%;
}

section{
  padding:5rem 10%;
}

.center{
  text-align:center;
}

/* ===============================
   HERO
================================ */
.hero{
  min-height:90vh;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("img/hero.png") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

.hero-content{
  max-width:850px;
  animation:fadeUp 1.2s ease forwards;
}

.hero img{
  max-width:200px;
  margin-bottom:2.5rem;
}

.hero h1{
  color:#fff;
  font-size:3rem;
}

.hero p{
  margin:1.5rem 0 2.5rem;
  font-size:1.1rem;
}

/* ===============================
   BOTONES
================================ */
.cta{
  display:inline-block;
  padding:1rem 2.4rem;
  background:var(--accent);
  color:#fff;
  border-radius:2rem;
  font-weight:500;
  transition:.3s ease;
}

.cta:hover{
  background:var(--accent-hover);
}

/* ===============================
   SERVICIOS
================================ */
.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:2.5rem;
}

.card{
  background:#fff;
  padding:2.6rem 2.2rem;
  border-radius:1.6rem;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.4s ease;
}

.card:hover{
  transform:translateY(-10px);
}

/* ===============================
   GALERÍAS
================================ */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
  margin-top:3rem;
}

.gallery img{
  width:100%;
  height:720px;
  object-fit:cover;
  border-radius:1.6rem;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
}

/* ===============================
   PRECIOS (BONITOS)
================================ */
.price-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:2.5rem;
  margin-top:3rem;
}

.price-card{
  background:#fff;
  border-radius:1.6rem;
  padding:2.4rem 2.2rem;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  text-align:center;
}

.price-card h3{
  margin-bottom:1rem;
}

.price-card .price{
  font-size:1.9rem;
  color:var(--primary);
  font-weight:600;
  margin-bottom:1rem;
}

.price-card ul{
  list-style:none;
  padding:0;
}

.price-card li{
  margin:.45rem 0;
  font-size:.95rem;
  color:#555;
}

/* ===============================
   ANIMACIONES
================================ */
.fade{
  opacity:0;
  transform:translateY(30px);
  transition:1s ease;
}

.fade.show{
  opacity:1;
  transform:none;
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:none}
}

/* ===============================
   WHATSAPP
================================ */
.whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  width:60px;
  height:60px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.3);
  z-index:1000;
}

.whatsapp svg{
  fill:#fff;
  width:30px;
}

/* ===============================
   FOOTER
================================ */
footer{
  background:#111;
  color:#aaa;
  text-align:center;
  padding:2.5rem 10%;
  font-size:.9rem;
}