:root{
  --bg: #ffffff;
  --text: #1f2a37;
  --muted: #4b5563;
  --beige: #f5efe6;
  --blue: #6d8fb3;
  --blue-strong: #3a5f86;
  --card: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 6px 18px rgba(0,0,0,0.08);
  --radius: 12px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
h1,h2,h3{
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: #1b2634;
  line-height: 1.2;
  margin: 0 0 12px;
}
p{margin:0 0 14px;color:var(--muted)}
a{color:var(--blue-strong);text-decoration:none}
a:hover{text-decoration:underline}

.container{
  width: min(1120px, 92vw);
  margin: 0 auto;
}
.grid{
  display: grid;
  gap: 24px;
}
.grid.cols-2{grid-template-columns: repeat(2, minmax(0, 1fr))}
.grid.cols-3{grid-template-columns: repeat(3, minmax(0, 1fr))}
@media (max-width: 900px){
  .grid.cols-2,.grid.cols-3{grid-template-columns: 1fr}
}
.section{
  padding: 72px 0;
}
.section.soft{
  background: var(--beige);
}
.section-head{
  margin-bottom: 28px;
}
.section-head p{max-width: 720px}

.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.12);
  backdrop-filter: saturate(1.2) blur(6px);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled{
  background: rgba(255,255,255,0.9);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height: 64px;
}
.brand{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: .6px;
  font-size: 22px;
  color: #2a3b52;
}
.menu{
  display:flex; gap: 20px; align-items:center;
}
.menu a{
  padding: 8px 10px;
  border-radius: 8px;
}
.menu a:hover{
  background: rgba(109,143,179,.12);
  text-decoration: none;
}
.menu-toggle{
  display:none;
  border:none; background:transparent; font-size:24px; cursor:pointer;
}
@media (max-width: 860px){
  .menu-toggle{display:block}
  .menu{
    position: absolute; top: 64px; right: 16px;
    background: #fff; border: 1px solid var(--border);
    padding: 10px; border-radius: 10px; box-shadow: var(--shadow);
    display:none; flex-direction: column; min-width: 220px;
  }
  .menu.open{display:flex}
}

.hero{
  padding: 140px 0 84px;
  background: linear-gradient(180deg, rgba(245,239,230,.8), rgba(255,255,255,0));
}
.hero-title{
  font-size: clamp(28px, 4vw, 42px);
}
.hero-subtitle{
  font-size: 18px;
  color: #374151;
  max-width: 720px;
}
.hero-cta{margin-top:22px; display:flex; gap:12px; flex-wrap:wrap}

.btn{
  display:inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  border:1px solid var(--blue-strong);
  color: var(--blue-strong);
  font-weight: 500;
  transition: transform .05s ease, background .2s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  background: var(--blue-strong);
  color: #fff;
  border-color: var(--blue-strong);
}
.btn.primary:hover{background:#2f4e70}
.btn.ghost{background: transparent}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card.outline{box-shadow:none}
.quote{
  background: #fff;
  border-left: 4px solid var(--blue);
  padding: 16px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.list-advantages{list-style:none; padding:0; margin:0}
.list-advantages li{margin-bottom:10px}

.form .field{margin-bottom:14px}
.form label{display:block; font-weight:600; margin-bottom:6px}
.form input,.form textarea{
  width:100%;
  border:1px solid var(--border);
  padding:12px 12px;
  border-radius:10px;
  font: inherit;
  outline:none;
}
.form input:focus,.form textarea:focus{border-color: var(--blue-strong)}
.field.checkbox{display:flex; gap:10px; align-items:center}
.form-actions{display:flex; gap:12px; flex-wrap:wrap}
.form-success{color:#047857; font-weight:600; margin-top:8px}
.contact-details .info-list{list-style:none; padding:0; margin:0}
.contact-details .info-list li{margin-bottom:6px}

.map{padding:0}
.map-embed{height: 360px}
.map-embed iframe{border:0; width:100%; height:100%}

.footer{background:#0f172a; color:#e5e7eb; padding: 32px 0 18px; margin-top: 32px}
.footer a{color:#cbd5e1}
.footer-grid{display:grid; gap:18px; grid-template-columns: repeat(3, minmax(0,1fr))}
@media (max-width: 800px){.footer-grid{grid-template-columns:1fr}}
.footer-bottom{border-top:1px solid #1e293b; margin-top: 18px; padding-top: 12px; text-align:center}

.whatsapp-float{
  position: fixed;
  right: 16px; bottom: 18px;
  width: 52px; height: 52px;
  display:flex; align-items:center; justify-content:center;
  background: #25d366;
  color:#fff; border-radius: 50%;
  box-shadow: var(--shadow);
  font-weight: 700;
}
.whatsapp-float:hover{text-decoration:none; transform: translateY(-1px)}

.cookie-banner{
  position: fixed; left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,0.96);
  color: #e5e7eb;
  padding: 16px 0;
  display:none;
  z-index: 1001;
}
.cookie-banner.show{display:block}
.cookie-inner{display:flex; align-items:center; gap: 12px; justify-content: space-between}
.cookie-inner p{margin:0}
@media (max-width: 800px){.cookie-inner{flex-direction:column; align-items:flex-start}}
.cookie-actions{display:flex; gap:10px}

.reveal{opacity:0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease}
.reveal.visible{opacity:1; transform: translateY(0)}

main{padding-top: 64px}
