:root{
    --bg:#07112b;
    --surface:#ffffff;
    --text:#0f172a;
    --muted:#64748b;

    --blue:#1e6cff;
    --cyan:#00bcd4;

    --shadow: 0 18px 50px rgba(2, 6, 23, .35);
    --shadow2: 0 18px 40px rgba(15, 23, 42, .08);
    --max:1200px;
}

*{
    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:#fff;
    background: radial-gradient(1200px 600px at 20% 15%, rgba(30,108,255,.20), transparent 60%),
        radial-gradient(900px 500px at 70% 25%, rgba(0,188,212,.18), transparent 55%),
        linear-gradient(180deg, #050b18 0%, var(--bg) 35%, #040815 100%);
}

.container{
    max-width:var(--max);
    margin:0 auto;
    padding:0 22px;
}
a{
    color:inherit
}

/* NAV */
.nav{
    position:sticky;
    top:0;
    z-index:50;
    backdrop-filter: blur(14px);
    background: rgba(5, 11, 24, .55);
    border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 0;
    gap:18px;
}
.brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:800;
    letter-spacing:-.02em;
}
.brand .logo{
    width:42px;
    height:42px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background: linear-gradient(135deg, rgba(30,108,255,.85), rgba(0,188,212,.75));
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    border:1px solid rgba(255,255,255,.14);
}
.nav-links{
    display:flex;
    gap:16px;
    align-items:center;
    color: rgba(255,255,255,.82);
    font-weight:600;
    font-size:14px;
}
.nav-links a{
    text-decoration:none;
    padding:10px 12px;
    border-radius:12px;
    transition: background .15s ease, color .15s ease;
}
.nav-links a:hover{
    background: rgba(255,255,255,.06);
    color:#fff;
}

/* BUTTONS */
.btn{
    border:none;
    cursor:pointer;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 18px;
    border-radius:14px;
    font-weight:800;
    font-size:14px;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    user-select:none;
}
.btn:active{
    transform: translateY(1px);
}
.btn-primary{
    color:#fff;
    background: linear-gradient(90deg, rgba(30,108,255,1), rgba(0,188,212,1));
    box-shadow: 0 14px 30px rgba(30,108,255,.22);
}
.btn-primary:hover{
    box-shadow: 0 18px 40px rgba(30,108,255,.28);
}
.btn-ghost{
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    padding:12px 14px;
}
.btn-ghost:hover{
    background: rgba(255,255,255,.10);
}

/* HERO */
.hero{
    padding:56px 0 42px;
    overflow:hidden;
}
.hero-grid{
    display:grid;
    grid-template-columns: 1.35fr .85fr;
    gap:34px;
    align-items:center;
    padding:38px 0 8px;
}
.badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 12px;
    border-radius:999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.88);
    font-weight:700;
    font-size:12px;
}
.h-title{
    margin:18px 0 12px;
    font-size:56px;
    line-height:1.05;
    letter-spacing:-.04em;
    font-weight:800;
}
.accent{
    background: linear-gradient(90deg, rgba(30,108,255,1), rgba(0,188,212,1));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}
.h-sub{
    margin:0;
    max-width:560px;
    color: rgba(255,255,255,.80);
    line-height:1.7;
    font-size:15px;
    font-weight:600;
}
.cta{
    display:flex;
    gap:14px;
    margin-top:22px;
    flex-wrap:wrap;
}

/* PROFILE */
.profile{
    background: rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    border-radius:26px;
    box-shadow: var(--shadow);
    padding:26px 22px;
    position:relative;
    overflow:hidden;
}
.profile::before{
    content:"";
    position:absolute;
    inset:-1px;
    background: radial-gradient(420px 220px at 20% 12%, rgba(30,108,255,.25), transparent 55%),
        radial-gradient(420px 240px at 80% 20%, rgba(0,188,212,.20), transparent 55%);
    pointer-events:none;
}
.profile > *{
    position:relative;
}

.avatar-wrap{
  width:158px;
  height:158px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(30,108,255,1), rgba(0,188,212,1));
  padding:4px;
  margin:0 auto 14px;
  position:relative;
}

/* FOTO COMPLETA (sin recorte) */
.avatar{
  width:100%;
  height:100%;
  border-radius:999px;
  overflow:hidden;
  padding:0 !important;
  background: transparent;
}

.avatar img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover !important;        /* 👈 llena el círculo */
  object-position: center 20% !important; /* ajusta si corta la cara */
}
.status{
    width:14px;
    height:14px;
    border-radius:99px;
    position:absolute;
    right:10px;
    bottom:14px;
    background:#2dd4bf;
    border:3px solid rgba(7,17,43,1);
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.p-name{
    text-align:center;
    font-weight:900;
    font-size:20px;
    margin:0;
    letter-spacing:-.02em;
}
.p-role{
    text-align:center;
    margin:8px 0 14px;
    color: rgba(255,255,255,.75);
    font-weight:600;
    font-size:13px;
}
.p-license{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color: rgba(255,255,255,.70);
    font-weight:700;
    font-size:12px;
    margin-bottom:14px;
}
.p-items{
    margin-top:8px;
    display:grid;
    gap:12px;
}
.p-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 12px;
    border-radius:16px;
    background: rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.85);
    font-weight:700;
    font-size:13px;
}
.ico{
    width:38px;
    height:38px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background: rgba(30,108,255,.12);
    border:1px solid rgba(30,108,255,.18);
}
.p-item span{
    color: rgba(255,255,255,.82);
    font-weight:700;
}

/* SERVICES */
.section{
    padding:56px 0;
    background: #f7f9ff;
    color: var(--text);
}
.kicker{
    text-align:center;
    font-size:12px;
    letter-spacing:.14em;
    font-weight:900;
    color: var(--blue);
    text-transform:uppercase;
    margin-bottom:10px;
}
.section h2{
    text-align:center;
    font-size:46px;
    margin:0 0 10px;
    letter-spacing:-.04em;
}
.lead{
    text-align:center;
    max-width:740px;
    margin:0 auto 34px;
    color: var(--muted);
    line-height:1.7;
    font-weight:600;
}
.cards{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.s-card{
    background: #fff;
    border:1px solid #eef2ff;
    border-radius:26px;
    box-shadow: var(--shadow2);
    padding:24px 22px;
    position:relative;
    overflow:hidden;
    min-height:340px;
}
.s-card::before{
    content:"";
    position:absolute;
    inset:-1px;
    background: radial-gradient(380px 160px at 20% 10%, rgba(30,108,255,.10), transparent 60%);
    pointer-events:none;
}
.s-card > *{
    position:relative;
}
.s-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    display:grid;
    place-items:center;
    background: rgba(30,108,255,.08);
    border:1px solid rgba(30,108,255,.14);
    margin-bottom:14px;
}
.s-mini{
    font-size:12px;
    color: var(--muted);
    font-weight:800;
    margin:0 0 8px;
}
.s-title{
    margin:0 0 10px;
    font-size:22px;
    font-weight:900;
    letter-spacing:-.02em;
}
.s-desc{
    margin:0 0 16px;
    color: var(--muted);
    line-height:1.7;
    font-weight:600;
    font-size:14px;
}

.list{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
}
.list li{
    display:flex;
    gap:10px;
    align-items:flex-start;
    color: #111827;
    font-weight:700;
    font-size:13px;
}
.check{
    width:18px;
    height:18px;
    flex:0 0 auto;
    margin-top:1px;
    color:#22c55e;
}
.more{
    margin-top:18px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    color: var(--blue);
    font-weight:900;
    text-decoration:none;
    padding:10px 0;
}
.more svg{
    opacity:.8
}

/* STATS */
.stats{
    margin-top:42px;
    display:grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap:14px;
    align-items:center;
    padding-top:18px;
}
.stat{
    text-align:center;
    padding:18px 10px;
}
.stat .n{
    font-size:34px;
    font-weight:1000;
    color: var(--blue);
    letter-spacing:-.03em;
}
.stat .t{
    margin-top:6px;
    color: var(--muted);
    font-weight:700;
    font-size:13px;
}

/* CONTACT */
.contact{
    padding:70px 0;
    color:#fff;
    background: radial-gradient(900px 520px at 20% 20%, rgba(30,108,255,.22), transparent 60%),
        radial-gradient(900px 520px at 75% 35%, rgba(0,188,212,.16), transparent 60%),
        linear-gradient(180deg, #040815 0%, #07112b 55%, #040815 100%);
    border-top:1px solid rgba(255,255,255,.06);
    border-bottom:1px solid rgba(255,255,255,.06);
}
.contact-grid{
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap:28px;
    align-items:start;
}
.contact .k{
    font-size:12px;
    letter-spacing:.14em;
    font-weight:900;
    color: rgba(0,188,212,.95);
    text-transform:uppercase;
    margin:0 0 10px;
}
.contact h2{
    margin:0 0 10px;
    font-size:54px;
    letter-spacing:-.04em;
    line-height:1.05;
}
.contact p{
    margin:0 0 22px;
    max-width:560px;
    color: rgba(255,255,255,.80);
    line-height:1.7;
    font-weight:600;
    font-size:15px;
}

.info-cards{
    display:grid;
    gap:14px;
    max-width:560px;
}
.info{
    display:flex;
    gap:14px;
    align-items:center;
    padding:16px 16px;
    border-radius:18px;
    background: rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.info .ico{
    background: rgba(30,108,255,.14);
    border-color: rgba(30,108,255,.22);
}
.info .label{
    font-size:12px;
    color: rgba(255,255,255,.65);
    font-weight:800;
    margin-bottom:2px;
}
.info .value{
    font-weight:900;
    letter-spacing:-.01em;
    color: rgba(255,255,255,.92);
}

/* FORM */
.form-card{
    background:#fff;
    color: var(--text);
    border-radius:28px;
    padding:24px 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    border:1px solid rgba(255,255,255,.12);
}
.form-card h3{
    text-align:center;
    margin:8px 0 6px;
    font-size:20px;
    font-weight:1000;
    letter-spacing:-.02em;
}
.form-card .sub{
    text-align:center;
    margin:0 0 18px;
    color: var(--muted);
    font-weight:700;
    font-size:13px;
}

form{
    display:grid;
    gap:12px;
}
.row2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}
label{
    font-size:12px;
    font-weight:900;
    color: #0f172a;
    margin-bottom:6px;
    display:block;
}

.field input, .field select, .field textarea{
    width:100%;
    padding:12px 12px;
    border-radius:12px;
    border:1px solid #e8edf7;
    outline:none;
    font-family:inherit;
    background:#fbfcff;
    font-weight:700;
    color:#0f172a;
}
.field input:focus, .field select:focus, .field textarea:focus{
    border-color: rgba(30,108,255,.35);
    box-shadow: 0 0 0 4px rgba(30,108,255,.10);
    background:#fff;
}
textarea{
    min-height:92px;
    resize:vertical;
}

.err{
    display:block;
    min-height:16px;
    margin-top:6px;
    font-size:11px;
    font-weight:800;
    color:#ef4444;
}

.submit{
    margin-top:6px;
    width:100%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 18px;
    border-radius:14px;
    font-weight:1000;
    background: linear-gradient(90deg, rgba(30,108,255,1), rgba(0,188,212,1));
    color:#fff;
    border:none;
    cursor:pointer;
    box-shadow: 0 14px 30px rgba(30,108,255,.22);
}
.submit[disabled]{
    opacity:.7;
    cursor:not-allowed;
}
.submit:hover{
    box-shadow: 0 18px 40px rgba(30,108,255,.28);
}

.fineprint{
    margin:10px 0 0;
    text-align:center;
    color: var(--muted);
    font-weight:700;
    font-size:11px;
}

/* Honeypot hidden */
.hp{
    position:absolute !important;
    left:-9999px !important;
    top:auto !important;
    width:1px !important;
    height:1px !important;
    overflow:hidden !important;
}

/* Toast */
.toast{
    display:none;
    margin-top:10px;
    padding:12px 12px;
    border-radius:12px;
    font-weight:900;
    font-size:12px;
}
.toast.ok{
    display:block;
    background:#ecfdf5;
    color:#065f46;
    border:1px solid #bbf7d0;
}
.toast.bad{
    display:block;
    background:#fef2f2;
    color:#991b1b;
    border:1px solid #fecaca;
}

/* FOOTER */
footer{
    padding:46px 0 30px;
    background:#030714;
    border-top:1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.75);
}
.foot-grid{
    display:grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap:20px;
    padding-bottom:24px;
    border-bottom:1px solid rgba(255,255,255,.08);
}
.foot-title{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:1000;
    color:#fff;
    margin:0 0 10px;
    letter-spacing:-.02em;
}
.foot-title .logo{
    width:42px;
    height:42px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background: linear-gradient(135deg, rgba(30,108,255,.85), rgba(0,188,212,.75));
    border:1px solid rgba(255,255,255,.14);
}
.foot p{
    margin:0;
    line-height:1.7;
    font-weight:600;
    max-width:420px;
    color: rgba(255,255,255,.72);
}
.muted{
    color: rgba(255,255,255,.62);
}

.col h4{
    margin:10px 0 12px;
    color:#fff;
    font-size:14px;
    letter-spacing:-.01em;
}
.links{
    display:grid;
    gap:10px;
    font-weight:700;
    color: rgba(255,255,255,.72);
    font-size:13px;
}
.links a{
    text-decoration:none;
    opacity:.95;
}
.links a:hover{
    color:#fff;
}

.foot-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    padding-top:18px;
    font-weight:700;
    font-size:12px;
    color: rgba(255,255,255,.55);
}

.hide-mobile{
    display:block
}

@media (max-width: 980px){
    .nav-links{
        display:none;
    }
    .hero-grid{
        grid-template-columns: 1fr;
    }
    .h-title{
        font-size:44px;
    }
    .cards{
        grid-template-columns: 1fr;
    }
    .stats{
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid{
        grid-template-columns: 1fr;
    }
    .row2{
        grid-template-columns: 1fr;
    }
    .foot-grid{
        grid-template-columns: 1fr;
    }
    .hide-mobile{
        display:none
    }
}

/* ===== Licencias / Estados (Profile) ===== */
.p-licenses{
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.p-licenses-title{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    font-size:13px;
    letter-spacing:.02em;
    color: rgba(255,255,255,.92);
    margin-bottom:10px;
}

.p-licenses-ico{
    width:30px;
    height:30px;
    border-radius:10px;
    display:grid;
    place-items:center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.p-licenses-badges{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.p-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:30px;
    padding:0 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.04em;
    color:#fff;

    background: rgba(30,108,255,.14);
    border: 1px solid rgba(30,108,255,.22);
    box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.p-licenses-note{
    margin-top:10px;
    font-size:12px;
    line-height:1.55;
    color: rgba(255,255,255,.70);
}

.p-licenses-note strong{
    color: rgba(255,255,255,.92);
}

.faq-wrap{
  max-width: 720px;
}

.faq{
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.faq-item{
  padding-bottom: 14px;
  border-bottom: 1px solid #e6edf5;
}

.faq-item h3{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.faq-item p{
  margin: 0;
  color: #475569;
  line-height: 1.6;
  font-weight: 500;
}


