:root {
  --bg: #0b0c0e;
  --bg-2: #121417;
  --surface: #17191d;
  --surface-2: #1d2025;
  --text: #f5f6f7;
  --muted: #aeb3ba;
  --line: rgba(255,255,255,.10);
  --accent: #f59e0b;
  --accent-2: #ffb52e;
  --green: #25d366;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 20px 55px rgba(0,0,0,.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { width: 88px; height: 88px; object-fit: contain; display: block; border-radius: 0; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { color: #d9dce0; text-decoration: none; font-size: 14px; font-weight: 650; transition: color .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--accent-2); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 15px; border: 1px solid var(--line); border-radius: 999px;
  text-decoration: none; font-weight: 750; font-size: 14px; background: #000000;
}
.header-quote { background: var(--accent); color: #111; border-color: var(--accent); }
.menu-toggle { display:none; border:1px solid var(--line); background:transparent; color:#fff; border-radius:10px; padding:10px 12px; font-size:20px; }

/* Shared */
.section { padding: 96px 0; }
.section.alt { background: #101216; }
.eyebrow { color: var(--accent-2); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 800; margin-bottom: 13px; }
.section-head { max-width: 760px; margin: 0 auto 48px; text-align:center; }
.section-title { font-size: clamp(32px, 4vw, 48px); line-height:1.1; letter-spacing:-.035em; margin-bottom: 15px; }
.section-subtitle { color: var(--muted); font-size: 17px; }

/* Hero */
.hero {
  min-height: 720px;
  display: grid; place-items: center;
  position: relative; overflow:hidden;
  background:
    radial-gradient(circle at 75% 35%, rgba(245,158,11,.13), transparent 30%),
    radial-gradient(circle at 20% 70%, rgba(255,255,255,.05), transparent 28%),
    linear-gradient(135deg, #0a0b0d 0%, #17191d 100%);
}
.hero::before {
  content:""; position:absolute; inset:0; opacity:.35;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-content { position:relative; z-index:1; max-width: 940px; text-align:center; padding: 70px 0; }
.hero h1 { font-size: clamp(46px, 6vw, 76px); line-height: .98; letter-spacing:-.055em; margin-bottom: 25px; }
.hero h1 span { color: var(--accent-2); }
.hero p { max-width: 760px; margin:0 auto 34px; color:#c6cad0; font-size: clamp(18px,2vw,21px); }
.hero-buttons { display:flex; justify-content:center; flex-wrap:wrap; gap:12px; }
.button { display:inline-flex; align-items:center; justify-content:center; gap:9px; min-height:52px; padding:0 22px; border-radius:12px; text-decoration:none; font-weight:800; transition:transform .2s, background .2s, border-color .2s; }
.button:hover { transform:translateY(-2px); }
.button-primary { background:var(--accent); color:#111; }
.button-secondary { border:1px solid rgba(255,255,255,.28); background:rgba(255,255,255,.04); }
.hero-trust { margin:42px auto 0; display:flex; justify-content:center; gap:24px; flex-wrap:wrap; color:#aeb3ba; font-size:13px; }
.hero-trust strong { color:#fff; }

/* Services */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.service-card {
  min-height: 220px; padding:28px; border:1px solid var(--line); border-radius:var(--radius);
  background:linear-gradient(145deg, #17191d, #111316); text-decoration:none;
  transition:transform .22s, border-color .22s, box-shadow .22s;
}
.service-card:hover { transform:translateY(-5px); border-color:rgba(245,158,11,.45); box-shadow:var(--shadow); }
.service-icon { width:50px; height:50px; display:grid; place-items:center; border-radius:14px; background:rgba(245,158,11,.11); color:var(--accent-2); font-size:23px; margin-bottom:22px; }
.service-card h3 { font-size:21px; margin-bottom:9px; }
.service-card p { color:var(--muted); font-size:15px; }
.service-more { display:inline-block; margin-top:18px; color:var(--accent-2); font-size:14px; font-weight:800; }

/* Why */
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.why-card { padding:30px 24px; border:1px solid var(--line); background:#121417; border-radius:var(--radius); transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.why-card:hover { transform:translateY(-7px); border-color:rgba(245,158,11,.42); box-shadow:0 16px 34px rgba(0,0,0,.28); }
.why-number { color:var(--accent-2); font-size:13px; font-weight:900; letter-spacing:.14em; }
.why-card h3 { margin:20px 0 8px; font-size:19px; }
.why-card p { color:var(--muted); font-size:15px; }

/* Empresa autorizada */
.authorized-section { background:#111316; color:#f5f6f7; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.authorized-card { max-width:1040px; margin:0 auto; display:grid; grid-template-columns:minmax(0,1fr) 230px; gap:56px; align-items:center; padding:48px 55px; border:1px solid rgba(255,255,255,.09); border-radius:18px; background:#15171b; box-shadow:0 18px 45px rgba(0,0,0,.25); }
.authorized-card .eyebrow { color:var(--accent-2); }
.authorized-card .section-title { color:#fff; margin-bottom:18px; text-align:left; }
.authorized-copy { min-width:0; }
.authorized-card p { max-width:760px; margin:0 0 20px; color:#b8bdc5; font-size:17px; line-height:1.8; }
.authorized-card strong { color:#fff; }
.authorized-link { display:inline-block; color:var(--accent-2); text-decoration:none; font-weight:800; }
.authorized-link:hover { text-decoration:underline; }
.infocal-badge { display:flex; align-items:center; justify-content:center; min-height:190px; padding:20px; border:1px solid rgba(255,255,255,.10); border-radius:16px; background:#0b0c0e; transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.infocal-badge:hover { transform:translateY(-4px); border-color:rgba(245,158,11,.45); box-shadow:0 14px 32px rgba(0,0,0,.28); }
.infocal-badge img { width:190px; height:190px; object-fit:contain; display:block; }

/* Reviews */
.reviews { background:#0e1013; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.google-rating { display:flex; justify-content:center; align-items:center; gap:14px; flex-wrap:wrap; margin:0 auto 35px; }
.rating-score { font-size:42px; font-weight:900; }
.google-stars { color:var(--accent-2); font-size:27px; letter-spacing:2px; }
.rating-count { color:var(--muted); }
.reviews-track { display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; padding:4px 2px 18px; }
.reviews-track::-webkit-scrollbar { display:none; }
.review-card { flex:0 0 min(420px, 88vw); scroll-snap-align:start; border:1px solid var(--line); background:#15171b; border-radius:16px; padding:24px; min-height:210px; }
.review-author { display:flex; align-items:center; gap:12px; }
.review-avatar { width:42px; height:42px; border-radius:50%; object-fit:cover; background:#2a2d32; }
.review-author-name a { text-decoration:none; font-weight:800; }
.review-date { color:#7f858e; font-size:12px; }
.review-stars { color:var(--accent-2); margin:14px 0 10px; }
.review-text { color:#d8dbe0; font-size:15px; }
.review-google { margin-top:17px; color:#7f858e; font-size:12px; }
.reviews-status { width:100%; text-align:center; color:var(--muted); padding:45px 10px; }
.reviews-controls { display:flex; justify-content:center; gap:10px; margin-top:12px; }
.review-control { width:46px; height:46px; border-radius:50%; border:1px solid var(--line); background:#15171b; color:#fff; font-size:23px; cursor:pointer; }
.google-cta { text-align:center; margin-top:28px; }
.google-cta a { display:inline-flex; padding:13px 18px; border:1px solid var(--accent); color:#fff; border-radius:10px; text-decoration:none; font-weight:800; }

/* Work gallery */
.work-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.work-card { overflow:hidden; border-radius:16px; border:1px solid var(--line); background:#15171b; transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.work-card:hover { transform:translateY(-5px); border-color:rgba(245,158,11,.38); box-shadow:0 16px 34px rgba(0,0,0,.28); }
.work-card img { width:100%; aspect-ratio: 4/3; object-fit:cover; display:block; transition:transform .35s ease; }
.work-card:hover img { transform:scale(1.035); }
.work-caption { padding:17px 18px; }
.work-caption h3 { font-size:17px; }
.work-caption p { color:var(--muted); font-size:14px; margin-top:4px; }

/* CTA */
.cta { padding:90px 0; background:linear-gradient(135deg,#17191d,#0c0d0f); }
.cta-box { border:1px solid var(--line); border-radius:24px; padding:55px; text-align:center; background:rgba(255,255,255,.025); }
.cta-box h2 { font-size:clamp(30px,4vw,46px); line-height:1.05; margin-bottom:15px; }
.cta-box p { color:var(--muted); max-width:680px; margin:0 auto 26px; }

/* Contact / Quote page */
.page-hero { padding:85px 0 55px; background:linear-gradient(135deg,#111316,#1a1d22); border-bottom:1px solid var(--line); }
.page-hero-inner { max-width:800px; text-align:center; margin:auto; }
.page-hero h1 { font-size:clamp(40px,5vw,64px); line-height:1; letter-spacing:-.045em; margin-bottom:16px; }
.page-hero p { color:var(--muted); font-size:18px; }
.quote-layout { display:grid; grid-template-columns:1.15fr .85fr; gap:22px; align-items:start; }
.form-card, .info-card { border:1px solid var(--line); border-radius:20px; background:#141619; padding:34px; }
.form-card h2, .info-card h2 { font-size:27px; margin-bottom:24px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { display:flex; flex-direction:column; gap:7px; }
.field.full { grid-column:1 / -1; }
.field label { font-size:13px; font-weight:750; color:#d9dce0; }
.field input, .field select, .field textarea { width:100%; border:1px solid #34383f; background:#0f1114; color:#fff; border-radius:10px; padding:13px 14px; outline:none; font:inherit; }
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--accent); box-shadow:0 0 0 3px rgba(245,158,11,.12); }
.field textarea { min-height:150px; resize:vertical; }
.check { display:flex; gap:10px; align-items:flex-start; margin:17px 0 20px; color:var(--muted); font-size:13px; }
.check input { margin-top:4px; accent-color:var(--accent); }
.form-note { color:#818791; font-size:12px; margin-top:12px; }
.info-list { display:grid; gap:22px; }
.info-item { padding-bottom:20px; border-bottom:1px solid var(--line); }
.info-item:last-child { border-bottom:0; padding-bottom:0; }
.info-label { color:var(--accent-2); text-transform:uppercase; letter-spacing:.1em; font-size:12px; font-weight:900; margin-bottom:5px; }
.info-item a { text-decoration:none; font-weight:700; }

/* Floating socials */
.floating-socials { position:fixed; right:20px; bottom:20px; z-index:1100; display:flex; flex-direction:column; gap:10px; }
.floating-socials a { width:52px; height:52px; border-radius:50%; display:grid; place-items:center; box-shadow:0 10px 28px rgba(0,0,0,.35); transition:transform .2s; }
.floating-socials a:hover { transform:translateY(-3px) scale(1.04); }
.floating-socials img { width:100%; height:100%; object-fit:contain; border-radius:50%; }
.floating-whatsapp { background:var(--green); }
.floating-instagram { background:#fff; }

/* Footer */
.site-footer { background:#070809; border-top:1px solid var(--line); padding:52px 0 25px; }
.footer-grid { display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:40px; }
.footer-brand img { width:175px; margin-bottom:15px; }
.footer-brand p, .footer-col p { color:#858b94; font-size:14px; }
.footer-col h3 { font-size:14px; text-transform:uppercase; letter-spacing:.1em; margin-bottom:14px; color:#fff; }
.footer-col a { display:block; color:#9da3ab; text-decoration:none; margin:7px 0; font-size:14px; }
.footer-col a:hover { color:var(--accent-2); }
.footer-bottom { margin-top:35px; padding-top:20px; border-top:1px solid var(--line); color:#656b73; font-size:12px; display:flex; justify-content:space-between; gap:15px; flex-wrap:wrap; }

@media (max-width: 980px) {
  .main-nav { display:none; }
  .menu-toggle { display:block; }
  .header-phone { display:none; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .work-grid { grid-template-columns:repeat(2,1fr); }
  .quote-layout { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 650px) {
  .container { width:min(var(--max), calc(100% - 28px)); }
  .header-inner { min-height:70px; }
  .logo img { width:70px; height:70px; }
  .header-quote { display:none; }
  .hero { min-height:650px; }
  .hero h1 { font-size:44px; }
  .section { padding:70px 0; }
  .services-grid, .why-grid, .work-grid, .form-grid { grid-template-columns:1fr; }
  .authorized-card { grid-template-columns:1fr; gap:28px; padding:34px 24px; }
  .authorized-card .eyebrow { text-align:center; }
  .authorized-card .section-title { text-align:center; }
  .authorized-card p { text-align:center; }
  .authorized-link { display:block; text-align:center; }
  .field.full { grid-column:auto; }
  .form-card, .info-card { padding:24px; }
  .cta-box { padding:34px 22px; }
  .footer-grid { grid-template-columns:1fr; }
  .floating-socials { right:12px; bottom:12px; }
  .floating-socials a { width:48px; height:48px; }
}
@media (max-width: 980px) {
  .main-nav.mobile-open {
    display:flex;
    position:absolute;
    left:14px; right:14px; top:calc(100% + 8px);
    flex-direction:column; align-items:stretch; gap:0;
    background:#111316; border:1px solid var(--line); border-radius:14px; padding:8px;
    box-shadow:var(--shadow);
  }
  .main-nav.mobile-open a { padding:12px 14px; border-radius:9px; }
  .main-nav.mobile-open a:hover { background:#1a1d22; }
}


/* Language selector */
.language-switcher { display:flex; align-items:center; gap:7px; padding:0 3px; }
.language-switcher a { width:34px; height:25px; display:grid; place-items:center; border-radius:6px; opacity:.72; transition:transform .2s ease, opacity .2s ease, box-shadow .2s ease; }
.language-switcher a:hover { opacity:1; transform:translateY(-1px); }
.language-switcher a.lang-active { opacity:1; box-shadow:0 0 0 1px var(--accent), 0 4px 12px rgba(245,158,11,.18); }
.language-switcher img { width:30px; height:20px; object-fit:cover; border-radius:4px; display:block; }
@media (max-width:650px) {
  .language-switcher { gap:5px; }
  .language-switcher a { width:30px; height:23px; }
  .language-switcher img { width:27px; height:18px; }
}


/* Formulario V16 */
.form-message { min-height: 22px; }
.form-message-success { color: #7ee2a8; }
.form-message-error { color: #ff9b9b; }
.form-card button[disabled] { opacity: .65; cursor: wait; transform: none; }
.form-card button[disabled]:hover { transform: none; }

.honeypot { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; opacity:0 !important; pointer-events:none !important; }
