:root{
    --bg:#f4f5f7;
    --surface:#fff;
    --text:#1d1f22;
    --muted:#6b7280;
    --dark:#14171b;
    --accent:#f4a261;   /* orange */
    --wa:#22c55e;       /* whatsapp green */
    --border:rgba(0,0,0,.10);
    --radius:18px;
    --shadow:0 12px 35px rgba(0,0,0,.10);
    --container:1120px;
  }
  
  *{ box-sizing:border-box; }
  body{
    margin:0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.45;
  }
  a{ color:inherit; text-decoration:none; }
  .container{
    width:min(var(--container), calc(100% - 32px));
    margin-inline:auto;
  }
  
  /* NAVBAR */
  .nav{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(20,23,27,.88);
    backdrop-filter: blur(10px);
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:14px 0;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-weight:800;
  }
  .brand-mark{
    width:34px;height:34px;border-radius:10px;
    background:linear-gradient(135deg,var(--accent),#ffd3a8);
    box-shadow:0 10px 24px rgba(244,162,97,.25);
  }
  .brand-text small{
    display:block;
    font-weight:600;
    opacity:.75;
    font-size:12px;
    margin-top:2px;
  }
  
  .nav-links{
    display:flex;
    gap:16px;
    color:rgba(255,255,255,.88);
    font-weight:700;
    font-size:14px;
  }
  .nav-links a{
    padding:8px 10px;
    border-radius:12px;
  }
  .nav-links a:hover{ background:rgba(255,255,255,.08); }
  .nav-links a.active{ color:var(--accent); }
  
  .phone-pill{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 12px;
    border-radius:14px;
    background:rgba(255,255,255,.10);
    color:#fff;
    border:1px solid rgba(255,255,255,.10);
    font-weight:800;
    font-size:14px;
    white-space:nowrap;
  }
  .phone-icon{
    width:28px;height:28px;border-radius:10px;
    display:grid;place-items:center;
    background:rgba(244,162,97,.16);
    border:1px solid rgba(244,162,97,.35);
    color:var(--accent);
  }
  
  .burger{
    display:none;
    width:44px;height:44px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.08);
    color:#fff;
    cursor:pointer;
  }
  .burger svg{ width:22px;height:22px; }
  
  .mobile-menu{
    display:none;
    border-top:1px solid rgba(255,255,255,.10);
    padding:10px 0 14px;
  }
  .mobile-menu a{
    display:block;
    padding:12px 10px;
    border-radius:14px;
    color:rgba(255,255,255,.92);
    font-weight:750;
  }
  .mobile-menu a:hover{ background:rgba(255,255,255,.08); }
  .mobile-menu a.active{ color:var(--accent); }
  .mobile-menu.open{ display:block; }
  
  /* HERO (short) */
  .page-hero{
    position:relative;
    height: 240px;
    background:#0b0f14;
    overflow:hidden;
  }
  .page-hero-bg{
    position:absolute; inset:0;
    background:
      linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.20)),
      url("../assets/hero.jpeg") center/cover no-repeat;
    transform:scale(1.02);
  }
  .page-hero-content{
    position:relative;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:#fff;
    gap:6px;
  }
  .page-hero h1{
    margin:0;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing:.4px;
    font-weight:900;
  }
  .page-hero p{
    margin:0;
    color:rgba(255,255,255,.85);
    font-weight:650;
  }
  
  /* SECTIONS */
  .section{ padding: 44px 0; }
  .section-tight{ padding-top: 12px; }
  .section-title-center{ text-align:center; margin-bottom: 14px; }
  .section-title-center h2{ margin:0; font-size: 22px; letter-spacing:.2px; }
  
  /* CONTACT GRID */
  .contact-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
  }
  .contact-card, .cta-card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:0 10px 24px rgba(0,0,0,.06);
    padding: 22px;
  }
  .contact-card h2, .cta-card h2{
    margin:0 0 14px;
    font-size: 22px;
  }

  
  .info-list{ display:grid; gap: 14px; }
  .info-item{
    display:flex;
    gap:12px;
    align-items:flex-start;
  }
  .info-ico{
    width:38px;height:38px;
    display:grid;place-items:center;
    border-radius:14px;
    background: rgba(244,162,97,.14);
    border:1px solid rgba(244,162,97,.30);
  }
  .info-label{
    color:var(--muted);
    font-weight:700;
    font-size: 12px;
    margin-bottom: 2px;
  }
  .info-value{
    font-weight:850;
  }
  .cta-card{ display:flex; flex-direction:column; gap: 12px; pointer-events: auto;}
  .btn{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight:900;
    border:1px solid transparent;
    text-align:center;
  }
  .btn .btn-ico{ font-size: 18px; }
  .btn small{
    font-weight:700;
    opacity:.9;
  }
  .btn-whatsapp{
    background: rgba(34,197,94,.14);
    border-color: rgba(34,197,94,.35);
  }
  .btn-whatsapp:hover{ box-shadow: var(--shadow); transform: translateY(-1px); }
  .btn-call{
    background: rgba(230, 208, 11, 0.18);
    border-color: rgba(244,162,97,.38);
  }
  
  .btn-call:hover{ box-shadow: var(--shadow); transform: translateY(-1px); }

  .cta-note{
    margin: 6px 0 0;
    color: var(--muted);
    font-weight: 650;
  }
  
  /* MAP */
  .map-card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:0 10px 24px rgba(0,0,0,.06);
  }
  .map-card iframe{
    width:100%;
    height: 320px;
    border:0;
  }
  
  /* FOOTER */
  .footer{
    margin-top: 30px;
    background:
      linear-gradient(180deg, rgba(20,23,27,.60), rgba(20,23,27,.92));
    color:#fff;
    border-top:1px solid rgba(255,255,255,.08);
  }
  .footer-cta{
    padding: 18px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap: 14px;
  }
  .footer-cta-left strong{
    font-size: 18px;
  }
  .footer-cta-sub{
    color: rgba(255,255,255,.78);
    font-weight:650;
    margin-top:4px;
    font-size: 13px;
  }
  .footer-phone{
    color: var(--accent);
    font-weight: 950;
    font-size: 22px;
    margin-top: 6px;
  }
  .footer-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 12px 14px;
    border-radius: 14px;
    border:1px solid rgba(34,197,94,.35);
    background: rgba(34,197,94,.16);
    font-weight: 900;
    white-space:nowrap;
  }
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,.10);
    padding: 18px 0 24px;
  }
  .footer-bottom-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items:start;
  }
  .footer-brand{
    font-weight: 950;
    font-size: 16px;
  }
  .footer-muted{
    color: rgba(255,255,255,.75);
    font-weight: 650;
    font-size: 13px;
    margin-top: 4px;
  }
  .footer-small{
    margin-top: 10px;
    color: rgba(255,255,255,.65);
    font-size: 12px;
    font-weight: 650;
  }
  .footer-nav{
    display:flex;
    flex-wrap:wrap;
    gap: 10px;
    justify-content:flex-end;
  }
  .footer-nav a{
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    font-weight: 800;
    font-size: 13px;
  }
  .footer-nav a:hover{ background: rgba(255,255,255,.10); }
  
  /* RESPONSIVE */
  @media (max-width: 980px){
    .contact-grid{ grid-template-columns: 1fr; }
    .footer-bottom-grid{ grid-template-columns: 1fr; }
    .footer-nav{ justify-content:flex-start; }
  }
  
  @media (max-width: 720px){
    .nav-links{ display:none; }
    .phone-pill{ display:none; }
    .burger{ display:inline-grid; place-items:center; }
    .map-card iframe{ height: 260px; }
  }
  