/* Tipografías y variables */
:root{
  --bg:#0f0f0f;
  --text:#f6f6f6;
  --muted:#c9c9c9;
  --brand:#161616;
  --accent:#2e7d32; /* verde discreto para CTAs */
  --accent-2:#0a58ca; /* azul enlace */
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  color:#222; background:#fff; line-height:1.6;
}

.container{max-width:1100px;margin:0 auto;padding:0 20px}

.site-header{position:sticky;top:0;background:#fff;border-bottom:1px solid #eee;z-index:10}
.site-header .nav{display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:64px}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none;color:#111;font-weight:700}
.brand img{width:40px;height:40px;object-fit:cover;border-radius:8px}
.menu{display:flex;gap:18px}
.menu a{color:#222;text-decoration:none;font-weight:500}
.menu a:hover{color:var(--accent-2)}

.nav-toggle{display:none}
.burger{display:none;cursor:pointer;flex-direction:column;gap:6px}
.burger span{width:26px;height:3px;background:#111;border-radius:2px}

@media (max-width:860px){
  .burger{display:flex}
  .menu{position:fixed;inset:64px 0 auto 0;display:flex;flex-direction:column;background:#fff;border-top:1px solid #eee;padding:12px 20px;transform:translateY(-120%);transition:.25s}
  .nav-toggle:checked ~ .menu{transform:translateY(0)}
}

/* Hero */
.hero{position:relative;display:grid;place-items:center}
.hero img{width:100%;height:62vh;object-fit:cover;filter:brightness(.55)}
.hero-overlay{position:absolute;inset:0;display:grid;place-content:center;text-align:center;color:#fff;padding:0 18px}
.hero .title{font-family:'Playfair Display',serif;font-size:clamp(28px,5vw,56px);margin:0 0 6px}
.hero .subtitle{font-weight:300;margin:0 0 18px}
.cta-row{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

.btn{display:inline-block;padding:12px 18px;border-radius:999px;text-decoration:none;font-weight:600;border:2px solid transparent;box-shadow:var(--shadow)}
.btn.primary{background:var(--accent);color:#fff}
.btn.primary:hover{filter:brightness(.95)}
.btn.ghost{background:transparent;border-color:#fff;color:#fff}
.btn.ghost:hover{background:rgba(255,255,255,.12)}

/* Sections */
.section{padding:64px 0}
.section.alt{background:#fafafa}
.section-title{font-family:'Playfair Display',serif;font-size:clamp(22px,3.5vw,36px);margin:0 0 6px}
.section-lead{color:#444;margin:0 0 24px}

/* Cards */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.card{background:#fff;border:1px solid #eee;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.card img{width:100%;height:180px;object-fit:cover}
.card h3{margin:12px 16px 4px}
.card p{margin:0 16px 18px;color:#555}
@media (max-width:900px){.cards{grid-template-columns:1fr 1fr}}
@media (max-width:600px){.cards{grid-template-columns:1fr} .card img{height:200px}}

/* Gallery */
.grid-gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.grid-gallery img{width:100%;height:180px;object-fit:cover;border-radius:14px}
@media (max-width:1000px){.grid-gallery{grid-template-columns:repeat(3,1fr)}}
@media (max-width:700px){.grid-gallery{grid-template-columns:repeat(2,1fr)}}
@media (max-width:480px){.grid-gallery{grid-template-columns:1fr} .grid-gallery img{height:220px}}

/* Social embeds */
.social-embeds{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start}
.social-embeds .embed{background:#fff;border:1px solid #eee;border-radius:var(--radius);padding:16px;box-shadow:var(--shadow)}
.social-embeds h3{margin:0 0 10px}
.ratio{position:relative;width:100%;padding-top:120%}
.ratio iframe,.ratio img{position:absolute;inset:0;width:100%;height:100%}
.ratio.video{padding-top:56.25%}
.ratio.map{padding-top:70%}
@media (max-width:860px){.social-embeds{grid-template-columns:1fr}}

/* Contact */
.contact-wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:start}
.contact-form{background:#fff;border:1px solid #eee;border-radius:var(--radius);padding:18px;box-shadow:var(--shadow)}
.contact-form label{display:block;font-weight:600;margin:10px 0 6px}
.contact-form input,.contact-form textarea{width:100%;padding:12px;border:1px solid #ddd;border-radius:12px;font:inherit}
.contact-form button{margin-top:10px}
.contact-info .contact-list{list-style:none;padding-left:0}
.contact-info .contact-list li{margin:6px 0}
@media (max-width:900px){.contact-wrap{grid-template-columns:1fr}}

/* Footer */
.site-footer{padding:28px 0;background:#111;color:#ddd}
.site-footer a{color:#fff;text-decoration:underline}

/* WhatsApp float */
.whatsapp-float{position:fixed;right:18px;bottom:18px;background:#25D366;border-radius:50%;width:60px;height:60px;display:grid;place-items:center;box-shadow:var(--shadow);z-index:20}
.whatsapp-float svg{fill:#fff;width:30px;height:30px}
.whatsapp-float:hover{filter:brightness(.95)}
