
:root{
  --lavanda:#CBAAD1;
  --lavanda-osc:#B292C0;
  --dorado:#DAB466;
  --gris:#F5F5F5;
  --negro:#1F1F1F;
  --blanco:#FFFFFF;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family: 'Georgia', 'Times New Roman', serif;color:#333;scroll-behavior:smooth}
h1,h2,h3{margin:0 0 .6rem 0;line-height:1.2}
p{line-height:1.8;margin:0 0 1rem 0}
a{color:var(--dorado);text-decoration:none}
a:hover{opacity:.9}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.btn{display:inline-block;padding:.9rem 1.2rem;border-radius:12px;border:none;background:var(--dorado);color:#222;font-weight:700;cursor:pointer}
.btn-outline{background:transparent;border:2px solid var(--dorado);color:var(--dorado)}
header{
  position:sticky;top:0;z-index:9;background:rgba(255,255,255,.9);backdrop-filter:saturate(180%) blur(8px);
  border-bottom:1px solid #eee
}
.nav{display:flex;align-items:center;justify-content:space-between;padding:.6rem 0}
.brand{display:flex;align-items:center;gap:.7rem}
.brand img{height:38px}
.brand .title{font-size:1.2rem;font-weight:800;color:#6D5C78}
nav ul{display:flex;gap:1.1rem;align-items:center;list-style:none;margin:0;padding:0}
nav a{font-weight:600;color:#333}
.hero{
  position:relative;min-height:82vh;display:flex;align-items:center;justify-content:center;text-align:center;
  background:linear-gradient( to bottom, rgba(203,170,209,.65), rgba(203,170,209,.65) ), url('../img/hero_1.jpg') center/cover no-repeat;
  color:white;
}
.hero .inner{padding:2rem}
.hero h1{font-size:clamp(36px,5vw,66px);letter-spacing:.5px}
.hero p{font-size:clamp(16px,2.2vw,22px);opacity:.95;margin-top:.6rem}
.hero .actions{margin-top:1.3rem;display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

.section{padding:70px 0}
.section.alt{background:var(--gris)}
.section .head{margin-bottom:32px;text-align:center}
.section .head h2{font-size:clamp(28px,3.2vw,40px);color:#2B2231}
.section .head p{color:#555}

.cards{display:grid;grid-template-columns:repeat(3, 1fr);gap:20px}
.card{background:white;border-radius:20px;box-shadow:0 10px 30px rgba(0,0,0,.06);overflow:hidden;display:flex;flex-direction:column}
.card img{width:100%;height:190px;object-fit:cover}
.card .content{padding:18px}
.card h3{font-size:20px}
.card p{color:#555}

.gallery{columns:1 320px;column-gap:16px}
.gallery img{width:100%;margin:0 0 16px;border-radius:16px;display:block;break-inside:avoid}

.contact{display:grid;grid-template-columns:1.2fr .8fr;gap:26px}
.form-group{display:flex;gap:12px;flex-wrap:wrap}
input,textarea{width:100%;padding:12px 14px;border:1px solid #ddd;border-radius:12px;font-size:16px;background:#fff}
textarea{min-height:140px;resize:vertical}
iframe.embed{width:100%;border:none;border-radius:16px;min-height:430px;background:#fff}

.footer{background:#111;color:#ddd;padding:28px 0;margin-top:40px}
.footer .row{display:flex;align-items:center;justify-content:space-between;gap:20px}
.footer small{opacity:.9}
.footer a{color:#ddd;text-decoration:underline}
.badge{background:var(--lavanda);color:#fff;padding:6px 10px;border-radius:12px;font-size:12px;margin-left:6px}

/* WhatsApp floating */
.whatsapp{
  position:fixed;right:18px;bottom:18px;z-index:20;height:56px;width:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:#25D366;box-shadow:0 10px 20px rgba(0,0,0,.15);
}
.whatsapp img{height:30px;width:30px;filter:invert(1) brightness(10)}

@media (max-width:900px){
  .cards{grid-template-columns:1fr 1fr}
  .contact{grid-template-columns:1fr}
}
@media (max-width:600px){
  nav ul{display:none}
}
