/* css/style.css */
:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, .10);
  --card: rgba(255,255,255,.75);
  --shadow: 0 18px 40px rgba(15, 23, 42, .10);
  --shadow2: 0 10px 24px rgba(15, 23, 42, .08);
  --radius: 18px;
  --radius2: 24px;
  --accent: #2563eb;   /* azul */
  --accent2: #7c3aed;  /* violeta */
  --ok: #16a34a;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

.skip{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left: 16px; top: 16px;
  width: auto; height: auto;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  z-index: 9999;
}

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
}
.brand__mark{
  width: 38px; height: 38px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    radial-gradient(50% 60% at 30% 30%, rgba(37, 99, 235, .25), transparent 60%),
    radial-gradient(50% 60% at 70% 70%, rgba(124, 58, 237, .20), transparent 60%),
    linear-gradient(180deg, rgba(15,23,42,.03), rgba(15,23,42,.01));
  display:grid;
  place-items:center;
  position: relative;
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.brand__mark span{
  position:absolute;
  width: 60px; height: 60px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.08);
}
.brand__mark span:nth-child(1){ transform: translate(-10px,-10px); opacity:.7; }
.brand__mark span:nth-child(2){ transform: translate(10px,8px); opacity:.55; }
.brand__mark span:nth-child(3){ transform: translate(-2px,14px); opacity:.35; }

.brand__title{ font-weight: 700; letter-spacing: -.02em; }
.brand__subtitle{ font-size: 12px; color: var(--muted); margin-top: 2px; }

.nav{
  display:flex;
  gap: 16px;
  margin-left: auto;
}
.nav a{
  font-weight: 600;
  font-size: 14px;
  color: rgba(15,23,42,.85);
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(15,23,42,.04);
  text-decoration: none;
}

.actions{
  display:flex;
  gap: 10px;
  align-items:center;
}

.btn{
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  cursor: pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  border-color: rgba(37, 99, 235, .30);
  background: linear-gradient(135deg, rgba(37, 99, 235, .95), rgba(124, 58, 237, .92));
  color: #fff;
  box-shadow: 0 16px 34px rgba(37,99,235,.18);
}
.btn--primary:hover{ box-shadow: 0 18px 42px rgba(37,99,235,.22); text-decoration:none; }
.btn--ghost:hover{ background: rgba(15,23,42,.04); text-decoration:none; }

.burger{
  display:none;
  margin-left: auto;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  position: relative;
}
.burger span{
  position:absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: rgba(15,23,42,.85);
  border-radius: 99px;
}
.burger span:nth-child(1){ top: 14px; }
.burger span:nth-child(2){ top: 21px; opacity: .75; }
.burger span:nth-child(3){ top: 28px; }

.mobile{
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.95);
}
.mobile__inner{
  padding: 12px 0 18px;
  display:grid;
  gap: 10px;
}
.mobile a{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(15,23,42,.02);
  font-weight: 700;
}
.mobile__actions{
  display:flex;
  gap: 10px;
  margin-top: 4px;
}

/* Hero */
.hero{
  position: relative;
  padding: 54px 0 30px;
  overflow: hidden;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
  font-weight: 700;
  font-size: 13px;
}
.pill .dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero p{
  margin: 0 0 18px;
  color: rgba(15,23,42,.78);
  font-size: 16px;
}

.hero__cta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 18px;
}

.hero__meta{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}
.meta__item{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
  min-width: 220px;
}
.meta__k{ font-size: 12px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.meta__v{ font-weight: 700; margin-top: 2px; }

/* Video frame */
.frame{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.frame__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(15,23,42,.02);
}
.lights{ display:flex; gap: 7px; }
.lights span{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.10);
}
.lights span:nth-child(1){ background: rgba(239,68,68,.35); }
.lights span:nth-child(2){ background: rgba(245,158,11,.35); }
.lights span:nth-child(3){ background: rgba(34,197,94,.35); }
.frame__label{ font-weight: 800; font-size: 12px; color: rgba(15,23,42,.65); text-transform: uppercase; letter-spacing: .08em; }

.video{
  display:block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #fff;
}
.frame__hint{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: rgba(15,23,42,.72);
  font-weight: 600;
}
.frame__hint span{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  opacity: .85;
}

/* Background details */
.hero__bg{
  pointer-events:none;
  position:absolute;
  inset: 0;
}
.blob{
  position:absolute;
  width: 520px; height: 520px;
  border-radius: 999px;
  filter: blur(30px);
  opacity: .45;
}
.blob--a{
  left: -220px; top: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(37,99,235,.35), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(124,58,237,.25), transparent 60%);
}
.blob--b{
  right: -240px; bottom: -220px;
  background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.28), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(37,99,235,.22), transparent 60%);
}
.gridlines{
  position:absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,23,42,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 30% 20%, rgba(0,0,0,.7), transparent 70%);
  opacity: .35;
}

/* Sections */
.section{
  padding: 54px 0;
}
.section--alt{
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(15,23,42,.02), rgba(15,23,42,0));
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.section__head h2{
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.section__head p{
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.cards{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow2);
  padding: 16px 16px 18px;
  display:flex;
  gap: 10px;
  align-items:center;
  min-height: 84px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(15,23,42,.16);
}
.card__icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(50% 60% at 30% 30%, rgba(37, 99, 235, .18), transparent 60%),
    radial-gradient(50% 60% at 70% 70%, rgba(124, 58, 237, .14), transparent 60%),
    linear-gradient(180deg, rgba(15,23,42,.03), rgba(15,23,42,.01));
  border: 1px solid rgba(15,23,42,.08);
  font-size: 20px;
}
.card h3{ margin: 0; font-size: 16px; letter-spacing: -.01em; }
.card--muted{
  background: rgba(15,23,42,.02);
}

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}
.split h2{ margin: 0 0 10px; font-size: 28px; letter-spacing: -0.02em; }
.split p{ margin: 0 0 16px; color: rgba(15,23,42,.78); font-weight: 600; }

.mini{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.mini__item{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
  min-width: 220px;
}
.mini__label{
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.mini__value{ margin-top: 2px; font-weight: 800; }

.panel{
  border-radius: var(--radius2);
  border: 1px solid rgba(37,99,235,.18);
  background:
    radial-gradient(70% 80% at 20% 30%, rgba(37,99,235,.10), transparent 60%),
    radial-gradient(70% 80% at 80% 80%, rgba(124,58,237,.10), transparent 60%),
    rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  padding: 18px;
}
.panel__badge{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.panel__title{
  margin-top: 10px;
  font-weight: 900;
  font-size: 18px;
}
.panel__phone{
  margin-top: 8px;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.panel__actions{
  display:flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: start;
}
.contact__card{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.contact__card::before{
  content:"";
  position:absolute;
  inset:-80px -100px auto auto;
  width: 220px; height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(37,99,235,.22), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(124,58,237,.18), transparent 60%);
  filter: blur(10px);
  opacity: .55;
}
.contact__card h2{ margin: 0 0 10px; }
.contact__number{
  margin: 12px 0 14px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.contact__actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.toast{
  position:absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15,23,42,.92);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow2);
}

.contact__side .side__box{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(15,23,42,.02);
  padding: 18px;
}
.side__title{
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.side__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(15,23,42,.80);
  font-weight: 600;
}
.side__list li{ margin: 10px 0; }

.footer{
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__brand{ font-weight: 900; }
.footer__contact{ color: rgba(15,23,42,.78); font-weight: 600; }
.footer__right a{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(15,23,42,.02);
  font-weight: 800;
}
.footer__right a:hover{ text-decoration:none; background: rgba(15,23,42,.04); }

/* Reveal animations */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 920px){
  .hero__grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .nav, .actions{ display:none; }
  .burger{ display:inline-block; }
  .brand{ min-width: 0; }
}

@media (max-width: 520px){
  .cards{ grid-template-columns: 1fr; }
  .meta__item, .mini__item{ min-width: 0; width: 100%; }
  .btn{ width: 100%; }
  .hero__cta{ flex-direction: column; }
  .panel__actions{ flex-direction: column; }
  .contact__actions{ flex-direction: column; }
}
