*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:        #0A1628;
    --navy-mid:    #0D1E35;
    --navy-light:  #132644;
    --red:         #FF2D2D;
    --red-glow:    rgba(255,45,45,0.25);
    --cyan:        #00E5FF;
    --cyan-glow:   rgba(0,229,255,0.15);
    --white:       #FFFFFF;
    --gray:        #8A9BB5;
    --glass:       rgba(255,255,255,0.05);
    --glass-b:     rgba(255,255,255,0.1);
    --fdisp:       'Bebas Neue', cursive;
    --fhead:       'Syne', sans-serif;
    --fbody:       'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: var(--navy);
    color: var(--white);
    font-family: var(--fbody);
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ── NAV ── */
nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .3s, backdrop-filter .3s, border-color .3s;
    border-bottom: 1px solid transparent;
}
nav.scrolled {
    background: rgba(10,22,40,.95);
    backdrop-filter: blur(20px);
    border-color: var(--glass-b);
}
.nav-logo {
    font-family: var(--fhead);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -.01em;
}
.nav-logo span { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
    font-family: var(--fhead);
    font-weight: 700;
    font-size: .88rem;
    color: var(--cyan);
    text-decoration: none;
    letter-spacing: .05em;
}
.nav-wa {
    background: #25D366;
    color: #fff;
    padding: .45rem 1.1rem;
    border-radius: 50px;
    font-family: var(--fhead);
    font-weight: 700;
    font-size: .82rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: transform .2s, box-shadow .2s;
}
.nav-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.45); }

/* ── HERO ── */
#hero {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero-scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Ken Burns animated background */
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
}
.hero-bg-img picture,
.hero-bg-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
    will-change: transform;
    animation: kenburns 22s ease-in-out infinite alternate;
    transform-origin: center right;
}
@keyframes kenburns {
    0%   { transform: scale(1)    translate(0, 0); }
    33%  { transform: scale(1.04) translate(-1%, 0.5%); }
    66%  { transform: scale(1.06) translate(-1.5%, -0.8%); }
    100% { transform: scale(1.03) translate(-0.5%, 0.3%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg,
            rgba(8,16,30,.92)  0%,
            rgba(8,16,30,.88) 30%,
            rgba(8,16,30,.55) 52%,
            rgba(8,16,30,.25) 70%,
            rgba(8,16,30,.10) 100%
        );
}
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 62% 55%, rgba(255,160,30,.06), transparent 70%);
    animation: lightpulse 4s ease-in-out infinite;
}
@keyframes lightpulse {
    0%,100% { opacity: .4; }
    50%      { opacity: 1; }
}

.hero-scanline {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}
.hero-scanline::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,.15), transparent);
    animation: scandown 8s linear infinite;
    top: -2px;
}
@keyframes scandown {
    0%   { top: -2px; }
    100% { top: 100%; }
}

#hero .grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,229,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 2;
}
#hero .slash {
    position: absolute;
    top: -10%;
    right: 43%;
    width: 2px;
    height: 120%;
    background: linear-gradient(to bottom, transparent, var(--red) 50%, transparent);
    transform: rotate(6deg);
    opacity: .4;
    z-index: 3;
}
.hero-bg-word {
    position: absolute;
    bottom: -.1em;
    left: -.02em;
    font-family: var(--fdisp);
    font-size: clamp(7rem, 18vw, 17rem);
    color: rgba(255,255,255,.018);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
}

/* hero left */
.hero-left {
    padding: 4rem 2rem 4rem 4rem;
    position: relative;
    z-index: 4;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,45,45,.12);
    border: 1px solid rgba(255,45,45,.3);
    color: var(--red);
    font-family: var(--fhead);
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp .6s .2s ease forwards;
}
.hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: dot-pulse 1.5s infinite;
}
@keyframes dot-pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:.4; transform:scale(.6); }
}

h1 {
    font-family: var(--fdisp);
    font-size: clamp(3.8rem, 8.5vw, 7.5rem);
    line-height: .9;
    letter-spacing: .025em;
    margin-bottom: 1.6rem;
}
h1 .line { display: block; overflow: hidden; }
h1 .line span {
    display: block;
    opacity: 0;
    transform: translateY(105%);
}
h1 .line:nth-child(1) span { animation: slideUp .7s .4s cubic-bezier(.16,1,.3,1) forwards; }
h1 .line:nth-child(2) span { animation: slideUp .7s .55s cubic-bezier(.16,1,.3,1) forwards; }
h1 .line:nth-child(3) span { animation: slideUp .7s .7s cubic-bezier(.16,1,.3,1) forwards; }
h1 .line:nth-child(4) span { animation: slideUp .7s .85s cubic-bezier(.16,1,.3,1) forwards; }
h1 .red { color: var(--red); }

@keyframes slideUp {
    to { opacity:1; transform:translateY(0); }
}
@keyframes fadeUp {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
}

.hero-sub {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.65;
    max-width: 400px;
    margin-bottom: 2.2rem;
    opacity: 0;
    animation: fadeUp .6s 1s ease forwards;
}
.hero-sub strong { color: var(--white); }

.hero-ctas {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .6s 1.2s ease forwards;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: .9rem 1.9rem;
    border-radius: 8px;
    font-family: var(--fhead);
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .03em;
    box-shadow: 0 4px 24px rgba(37,211,102,.35);
    transition: transform .2s, box-shadow .2s;
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,.55); }

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: transparent;
    border: 1px solid var(--glass-b);
    color: var(--white);
    text-decoration: none;
    padding: .9rem 1.9rem;
    border-radius: 8px;
    font-family: var(--fhead);
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .03em;
    backdrop-filter: blur(10px);
    transition: border-color .2s, color .2s;
}
.btn-call:hover { border-color: var(--cyan); color: var(--cyan); }

.hero-number {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeUp .6s 1.4s ease forwards;
}
.pulse-ring {
    width: 42px; height: 42px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.pulse-ring::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--red);
    animation: ring-out 2s infinite;
}
@keyframes ring-out {
    0% { transform:scale(1); opacity:1; }
    100% { transform:scale(1.7); opacity:0; }
}
.hero-number a {
    font-family: var(--fhead);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: .05em;
}
.hero-number small {
    display: block;
    font-size: .68rem;
    color: var(--gray);
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* hero right */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 4rem 4rem 2rem;
    position: relative;
    z-index: 4;
}
.photo-frame {
    position: relative;
    width: 100%;
    max-width: 340px;
}
.photo-frame::before {
    content: '';
    position: absolute;
    inset: -24px;
    border-radius: 24px;
    background: radial-gradient(circle, var(--cyan-glow), transparent 70%);
    animation: glow-breathe 3s ease-in-out infinite;
}
@keyframes glow-breathe {
    0%,100% { opacity:.5; transform:scale(1); }
    50% { opacity:1; transform:scale(1.06); }
}
.photo-card {
    background: var(--navy-light);
    border: 1px solid var(--glass-b);
    border-radius: 18px;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp .8s .6s ease forwards;
}
.photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.photo-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(6,10,20,.95) 0%, rgba(6,10,20,.6) 50%, transparent 100%);
    padding: 2.4rem 1.6rem 1.6rem;
}
.photo-overlay-name {
    font-family: var(--fdisp);
    font-size: 2.6rem;
    line-height: .9;
    letter-spacing: .06em;
    color: var(--white);
    display: block;
}
.photo-overlay-title {
    font-family: var(--fhead);
    font-weight: 400;
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-top: .4rem;
    display: block;
}
.corner { position: absolute; width: 18px; height: 18px; }
.corner-tl { top: 1.1rem; left: 1.1rem; border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.corner-br { bottom: 1.1rem; right: 1.1rem; border-bottom: 2px solid var(--red); border-right: 2px solid var(--red); }

.stat-bubble {
    position: absolute;
    background: rgba(10,22,40,.85);
    border: 1px solid var(--glass-b);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: .7rem 1.1rem;
    opacity: 0;
    animation: fadeUp .6s ease forwards;
}
.stat-bubble .num { font-family: var(--fdisp); font-size: 1.6rem; color: var(--cyan); line-height: 1; }
.stat-bubble .lbl { font-size: .62rem; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; margin-top: .15rem; }

/* ── SOCIAL BAR ── */
.social-bar {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1.4rem;
    opacity: 0;
    animation: fadeUp .6s 1.6s ease forwards;
}
.social-lbl {
    font-size: .65rem;
    font-family: var(--fhead);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gray);
    margin-right: .2rem;
}
.social-btn {
    width: 36px; height: 36px;
    background: var(--glass);
    border: 1px solid var(--glass-b);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    color: var(--gray);
    transition: border-color .2s, color .2s, background .2s, transform .2s;
}
.social-btn:hover      { border-color: var(--cyan);  color: var(--cyan);  background: var(--cyan-glow); transform: translateY(-3px); }
.social-btn.fb:hover   { border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,.1); }
.social-btn.ig:hover   { border-color: #E1306C; color: #E1306C; background: rgba(225,48,108,.1); }
.social-btn.tt:hover   { border-color: #fff;    color: #fff;    background: rgba(255,255,255,.08); }
.social-btn.em:hover   { border-color: #00E5FF; color: #00E5FF; }

/* ── SHARED SECTION SHELL ── */
.sec { padding: 6rem 2rem; }
.sec-inner { max-width: 1200px; margin: 0 auto; }
.sec-full { padding: 6rem 2rem; max-width: 100%; }

.tag-line {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--fhead);
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: .9rem;
}
.tag-line::before { content:''; display:block; width:22px; height:1px; background:var(--cyan); }

.sec-title {
    font-family: var(--fdisp);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: .93;
    letter-spacing: .025em;
    margin-bottom: .9rem;
}
.sec-sub {
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.8rem;
}

/* ── SERVICES ── */
#servicios { background: linear-gradient(to bottom, var(--navy), var(--navy-mid)); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
}
.svc-card {
    background: var(--glass);
    border: 1px solid var(--glass-b);
    border-radius: 16px;
    padding: 1.8rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: transform .3s, border-color .3s;
    opacity: 0;
    transform: translateY(28px);
}
.svc-card.vis { animation: fadeUp .55s ease forwards; }
.svc-card:hover { transform: translateY(-6px); border-color: rgba(0,229,255,.28); }
.svc-card::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--cyan));
    opacity: 0;
    transition: opacity .3s;
}
.svc-card:hover::before { opacity: 1; }
.svc-icon {
    width: 46px; height: 46px;
    background: rgba(255,45,45,.1);
    border: 1px solid rgba(255,45,45,.2);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.1rem;
}
.svc-card h3 { font-family: var(--fhead); font-weight: 800; font-size: 1rem; margin-bottom: .5rem; letter-spacing: -.01em; }
.svc-card p  { font-size: .85rem; color: var(--gray); line-height: 1.7; }

/* ── WHY YUDITH ── */
#por-que .inner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    opacity: 0;
    transform: translateX(-18px);
}
.trust-list li.vis { animation: slideR .5s ease forwards; }
@keyframes slideR { to { opacity:1; transform:translateX(0); } }
.trust-icon {
    width: 36px; height: 36px;
    background: rgba(255,45,45,.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}
.trust-list h4 { font-family: var(--fhead); font-weight: 700; font-size: .93rem; margin-bottom: .2rem; }
.trust-list p  { font-size: .82rem; color: var(--gray); line-height: 1.55; }

.stats-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
}
.stat-tile {
    background: var(--glass);
    border: 1px solid var(--glass-b);
    border-radius: 14px;
    padding: 1.4rem;
    text-align: center;
    backdrop-filter: blur(10px);
}
.stat-tile .snum { font-family: var(--fdisp); font-size: 2.4rem; color: var(--cyan); line-height: 1; margin-bottom: .3rem; }
.stat-tile .slbl { font-size: .72rem; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; }

/* ── COMING SOON ── */
#seguros {
    background: linear-gradient(135deg, var(--navy-light) 0%, #1a0a0a 50%, var(--navy) 100%);
    border-top: 1px solid var(--glass-b);
    border-bottom: 1px solid var(--glass-b);
    position: relative;
    overflow: hidden;
    text-align: center;
}
#seguros::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,45,45,.07), transparent 65%);
}
#seguros::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,45,45,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,45,45,.025) 1px, transparent 1px);
    background-size: 40px 40px;
}
.cs-wrap { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cs-badge {
    display: inline-block;
    border: 1px solid var(--red);
    color: var(--red);
    font-family: var(--fhead);
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .38rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
    animation: glitch-txt 5s infinite;
}
@keyframes glitch-txt {
    0%,94%,100% { text-shadow: none; }
    95% { text-shadow: -2px 0 var(--cyan), 2px 0 var(--red); }
    97% { text-shadow: 2px 0 var(--cyan), -2px 0 var(--red); }
}
.cs-title { font-family: var(--fdisp); font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: .04em; line-height: .93; margin-bottom: 1.1rem; }
.cs-sub { color: var(--gray); font-size: .95rem; line-height: 1.7; margin-bottom: 2.4rem; }
.cs-form {
    display: flex;
    gap: .8rem;
    max-width: 440px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.cs-form input {
    flex: 1; min-width: 190px;
    background: var(--glass);
    border: 1px solid var(--glass-b);
    color: var(--white);
    padding: .85rem 1.1rem;
    border-radius: 8px;
    font-family: var(--fbody);
    font-size: .88rem;
    outline: none;
    transition: border-color .2s;
}
.cs-form input:focus { border-color: var(--cyan); }
.cs-form input::placeholder { color: var(--gray); }
.cs-form button {
    background: var(--red);
    color: #fff;
    border: none;
    padding: .85rem 1.8rem;
    border-radius: 8px;
    font-family: var(--fhead);
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .05em;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.cs-form button:hover { transform: translateY(-2px); box-shadow: 0 6px 22px var(--red-glow); }
.cs-note { margin-top: .9rem; font-size: .72rem; color: var(--gray); }

/* ── TESTIMONIALS ── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.4rem;
}
.testi-card {
    background: var(--glass);
    border: 1px solid var(--glass-b);
    border-radius: 16px;
    padding: 1.9rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(28px);
}
.testi-card.vis { animation: fadeUp .55s ease forwards; }
.qmark { font-family: var(--fdisp); font-size: 3.6rem; color: var(--red); line-height: .7; margin-bottom: .4rem; opacity: .6; }
.testi-card blockquote { font-size: .87rem; line-height: 1.72; color: var(--white); font-style: italic; margin-bottom: 1.4rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.author-av {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--red), var(--cyan));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--fhead);
    font-weight: 800;
    font-size: .75rem;
    flex-shrink: 0;
}
.stars { color: #FFD700; font-size: .72rem; letter-spacing: .1em; margin-bottom: .2rem; }
.author-name { font-family: var(--fhead); font-weight: 700; font-size: .87rem; }
.author-loc  { font-size: .72rem; color: var(--gray); }

/* ── CONTACT ── */
#contacto {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy));
    position: relative;
    overflow: hidden;
    text-align: center;
}
#contacto::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 560px; height: 560px;
    background: radial-gradient(circle, var(--cyan-glow), transparent 60%);
    pointer-events: none;
}
.contact-inner { position: relative; z-index: 2; max-width: 560px; margin: 0 auto; }
.contact-title { font-family: var(--fdisp); font-size: clamp(2.6rem, 6vw, 5rem); line-height: .93; letter-spacing: .03em; margin-bottom: .9rem; }
.contact-sub   { color: var(--gray); font-size: .95rem; line-height: 1.7; margin-bottom: 2.6rem; }
.contact-form  { display: grid; gap: .9rem; margin: 0 auto 2rem; }
.contact-form input,
.contact-form textarea {
    background: var(--glass);
    border: 1px solid var(--glass-b);
    color: var(--white);
    padding: .9rem 1.15rem;
    border-radius: 8px;
    font-family: var(--fbody);
    font-size: .9rem;
    outline: none;
    width: 100%;
    transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--cyan); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-family: var(--fhead);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .05em;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.contact-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--red-glow); }
.channels { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.ch-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .78rem 1.7rem;
    border-radius: 50px;
    font-family: var(--fhead);
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.ch-wa  { background: #25D366; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,.3); }
.ch-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
.ch-tel { background: var(--glass); border: 1px solid var(--glass-b); color: var(--white); backdrop-filter: blur(10px); }
.ch-tel:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }

/* ── FOOTER ── */
footer {
    background: #060d18;
    border-top: 1px solid var(--glass-b);
    padding: 2rem;
    text-align: center;
}
.foot-logo { font-family: var(--fhead); font-weight: 800; font-size: 1.05rem; margin-bottom: .4rem; }
.foot-logo span { color: var(--red); }
footer p { font-size: .75rem; color: var(--gray); }
footer a { color: var(--cyan); text-decoration: none; }

.foot-social { display: flex; justify-content: center; gap: .6rem; margin: .8rem 0; }
.foot-social a {
    width: 32px; height: 32px;
    background: var(--glass);
    border: 1px solid var(--glass-b);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray);
    text-decoration: none;
    transition: color .2s, border-color .2s;
}
.foot-social a:hover { color: var(--cyan); border-color: var(--cyan); }

/* ── FLOATING WA ── */
.float-wa {
    position: fixed;
    bottom: 1.8rem; right: 1.8rem;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.5);
    z-index: 999;
    text-decoration: none;
    animation: float-bob 3s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.12); animation: none; }
.float-wa::before {
    content: '';
    position: absolute; inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,.4);
    animation: ring-out 2.5s infinite;
}
@keyframes float-bob {
    0%,100% { transform:translateY(0); }
    50%      { transform:translateY(-7px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
    #hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 5.5rem 1.5rem 3rem; }
    #por-que .inner-grid { grid-template-columns: 1fr; }
    .nav-phone { display: none; }
}
@media (max-width: 480px) {
    h1 { font-size: 3.2rem; }
    .hero-ctas { flex-direction: column; }
    .btn-wa, .btn-call { justify-content: center; text-align: center; }
    nav { padding: 1rem 1.2rem; }
}
