    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --navy: #1B3A6B;
        --navy-dark: #112550;
        --navy-light: #2a4f8a;
        --orange: #E07B2A;
        --ol: #f09040;
        --w: #fff;
        --g50: #f8f8f6;
        --g100: #eeecea;
        --g500: #888780;
        --tx: #1a1a18;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--tx);
        background: var(--w);
        overflow-x: hidden;
    }

    /* NAV */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(17, 37, 80, 0.97);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px;
        height: 64px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: box-shadow .3s;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-mark {
        width: 36px;
        height: 36px;
        background: var(--orange);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 13px;
        color: #fff;
    }

    .nav-brand {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 15px;
        color: #fff;
    }

    .nav-brand span {
        color: var(--orange);
    }

    .nav-links {
        display: flex;
        gap: 22px;
        align-items: center;
    }

    .nav-links a {
        color: rgba(255, 255, 255, .75);
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: color .2s;
    }

    .nav-links a:hover {
        color: #fff;
    }

    .nav-cta {
        background: var(--orange);
        color: #fff !important;
        padding: 8px 18px;
        border-radius: 4px;
        font-size: 13px;
        font-weight: 700;
        transition: background .2s;
    }

    .nav-cta:hover {
        background: var(--ol) !important;
    }

    .nav-logo-wrap {
        perspective: 600px;
        display: flex;
        align-items: center;
    }

    .nav-logo-img {
        height: 52px;
        width: auto;
        object-fit: contain;
        transform: rotateY(15deg) rotateX(5deg);
        transform-style: preserve-3d;
        filter:
            drop-shadow(-4px 4px 6px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 10px rgba(224, 123, 42, 0.35)) drop-shadow(2px -2px 4px rgba(255, 255, 255, 0.15));
        transition: transform 0.4s ease, filter 0.4s ease;
    }

    .nav-logo-img:hover {
        transform: rotateY(0deg) rotateX(0deg) scale(1.08);
        filter:
            drop-shadow(-6px 6px 10px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 16px rgba(224, 123, 42, 0.6)) drop-shadow(3px -3px 6px rgba(255, 255, 255, 0.2));
    }

    /* HERO */
    .hero {
        min-height: 100vh;
        background:
            linear-gradient(140deg, rgba(17, 37, 80, 0.92) 0%, rgba(27, 58, 107, 0.85) 55%, rgba(30, 69, 128, 0.88) 100%),
            url('../imgs/hero.jpg') center/cover no-repeat;
        display: flex;
        align-items: center;
        padding: 90px 40px 60px;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        width: 650px;
        height: 650px;
        top: -15%;
        right: -10%;
        border-radius: 50%;
        border: 75px solid rgba(224, 123, 42, .07);
    }

    .hero::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        bottom: -20%;
        left: 28%;
        border-radius: 50%;
        border: 50px solid rgba(255, 255, 255, .04);
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1.1fr .95fr;
        gap: 60px;
        align-items: center;
        max-width: 1100px;
        margin: 0 auto;
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(224, 123, 42, .14);
        border: 1px solid rgba(224, 123, 42, .3);
        color: var(--ol);
        padding: 5px 14px;
        border-radius: 20px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .8px;
        text-transform: uppercase;
        margin-bottom: 22px;
    }

    .hero-dot {
        width: 6px;
        height: 6px;
        background: var(--orange);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: .3;
        }
    }

    .hero h1 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 50px;
        line-height: 1.1;
        color: #fff;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .hero h1 em {
        font-style: normal;
        color: var(--orange);
    }

    .hero-lead {
        font-size: 16px;
        line-height: 1.8;
        color: rgba(255, 255, 255, .75);
        margin-bottom: 36px;
        font-weight: 300;
        max-width: 500px;
    }

    .hero-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .hero a {
        font-style: normal;
        font-weight: bold;
        color: var(--orange);
        text-decoration: none;
    }

    .hero a:hover {
        font-style: normal;
        font-weight: bold;
        color: var(--orange);
        text-decoration: underline;
    }

    .btn-primary {
        background: var(--orange);
        color: #fff;
        padding: 13px 26px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all .2s;
        font-family: 'Inter', sans-serif;
        display: inline-block;
    }

    .btn-primary:hover {
        background: var(--ol);
        transform: translateY(-1px);
    }

    .btn-ghost {
        border: 1.5px solid rgba(255, 255, 255, .4);
        color: #fff;
        padding: 13px 26px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all .2s;
        font-family: 'Inter', sans-serif;
        background: transparent;
        display: inline-block;
    }

    .btn-ghost:hover {
        border-color: #fff;
        background: rgba(255, 255, 255, .08);
    }

    .stats-card {
        background: rgba(17, 37, 80, 0.6);
        border: 1px solid rgba(255, 255, 255, .15);
        border-radius: 14px;
        padding: 30px;
        backdrop-filter: blur(12px);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 14px;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, .08);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-bottom: none;
    }

    .stat-item:nth-child(4) {
        border-right: none;
        border-bottom: none;
    }

    .stat-n {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 32px;
        color: #fff;
        line-height: 1;
    }

    .stat-n em {
        font-style: normal;
        color: var(--orange);
    }

    .stat-l {
        font-size: 10px;
        color: rgba(255, 255, 255, .45);
        letter-spacing: .5px;
        text-transform: uppercase;
        margin-top: 5px;
    }

    .stats-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .stat-pill {
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .14);
        color: rgba(255, 255, 255, .65);
        padding: 3px 9px;
        border-radius: 9px;
        font-size: 9px;
        font-weight: 600;
        letter-spacing: .3px;
    }

    /* BASE */
    section {
        padding: 80px 40px;
    }

    .si {
        max-width: 1100px;
        margin: 0 auto;
    }

    .stag {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--orange);
        margin-bottom: 10px;
    }

    .stag-l {
        color: var(--ol);
    }

    .stit {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 34px;
        color: var(--navy);
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .stit-l {
        color: #fff;
    }

    .ssub {
        font-size: 14px;
        color: var(--g500);
        max-width: 580px;
        line-height: 1.75;
    }

    .ssub-l {
        color: rgba(255, 255, 255, .58);
    }

    /* QUIÉNES SOMOS */
    .nosotros {
        background:
            linear-gradient(135deg, rgba(17, 37, 80, 0.93) 0%, rgba(27, 58, 107, 0.88) 100%),
            url('../imgs/nosotros.jpg') center/cover no-repeat fixed;
        padding: 96px 40px;
    }

    .nosotros-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
        max-width: 1100px;
        margin: 0 auto;
    }

    .nos-img-main {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
        background: url('../imgs/main.jpg') center/cover no-repeat;
        aspect-ratio: 4/3;
        position: relative;
    }

    .nos-badge-float {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--orange);
        border-radius: 10px;
        padding: 18px 22px;
        text-align: center;
        box-shadow: 0 8px 24px rgba(224, 123, 42, .4);
    }

    .nos-badge-n {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 28px;
        color: #fff;
        line-height: 1;
    }

    .nos-badge-l {
        font-size: 11px;
        color: rgba(255, 255, 255, .85);
        font-weight: 600;
        margin-top: 3px;
    }

    .nosotros-img {
        position: relative;
    }

    .nos-vals {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 28px;
    }

    .nos-val {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 8px;
        padding: 16px 18px;
    }

    .nos-val-ico {
        width: 36px;
        height: 36px;
        background: rgba(224, 123, 42, .2);
        color: #fff;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
    }

    .nos-val-title {
        font-weight: 600;
        font-size: 13px;
        color: #fff;
        margin-bottom: 3px;
    }

    .nos-val-desc {
        font-size: 12px;
        color: rgba(255, 255, 255, .55);
        line-height: 1.55;
    }

    .nos-firma {
        margin-top: 28px;
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, .1);
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .nos-firma-av {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--orange), var(--ol));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 15px;
        color: #fff;
        flex-shrink: 0;
    }

    .nos-firma-name {
        font-weight: 700;
        font-size: 14px;
        color: #fff;
    }

    .nos-firma-role {
        font-size: 11px;
        color: rgba(255, 255, 255, .5);
        margin-top: 2px;
    }

    .nos-firma-mat {
        font-size: 10px;
        color: var(--ol);
        font-weight: 600;
        margin-top: 2px;
    }

    /* TABS */
    .tabs {
        display: flex;
        margin-top: 32px;
        margin-bottom: 32px;
        border: 1px solid rgba(27, 58, 107, .15);
        border-radius: 7px;
        overflow: hidden;
        width: fit-content;
    }

    .tab {
        padding: 10px 28px;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
        border: none;
        background: var(--w);
        color: var(--g500);
        font-family: 'Inter', sans-serif;
        transition: all .2s;
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .tab.on {
        background: var(--navy);
        color: #fff;
    }

    .tab:not(:last-child) {
        border-right: 1px solid rgba(27, 58, 107, .15);
    }

    .panel {
        display: none;
    }

    .panel.on {
        display: block;
    }

    /* SERVICIOS */
    .serv-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .scard {
        background: #fff;
        border-radius: 10px;
        padding: 26px;
        border: 1px solid var(--g100);
        transition: all .25s;
        position: relative;
        overflow: hidden;
    }

    .scard::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--orange);
        transform: scaleX(0);
        transition: transform .25s;
        transform-origin: left;
    }

    .scard:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(27, 58, 107, .09);
    }

    .scard:hover::after {
        transform: scaleX(1);
    }

    .sico {
        width: 42px;
        height: 42px;
        background: rgba(27, 58, 107, .07);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 19px;
        margin-bottom: 14px;
    }

    .scard h3 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 14px;
        color: var(--navy);
        margin-bottom: 9px;
        line-height: 1.3;
    }

    .scard p {
        font-size: 12.5px;
        color: var(--g500);
        line-height: 1.65;
    }

    .snorms {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 12px;
    }

    .snorm {
        background: rgba(224, 123, 42, .09);
        color: var(--orange);
        padding: 2px 8px;
        border-radius: 8px;
        font-size: 10px;
        font-weight: 700;
    }

    /* COBERTURA */
    .cob-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 26px;
        margin-top: 44px;
    }

    .cob-card {
        background: rgba(255, 255, 255, .055);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 12px;
        padding: 30px;
    }

    .cob-head {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
    }

    .cob-flag {
        font-size: 26px;
    }

    .cob-title {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 17px;
        color: #fff;
    }

    .cob-sub {
        font-size: 11px;
        color: rgba(255, 255, 255, .45);
    }

    .cob-desc {
        font-size: 12.5px;
        color: rgba(255, 255, 255, .62);
        line-height: 1.7;
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .cob-rows {
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

    .cob-row {
        display: flex;
        align-items: flex-start;
        gap: 9px;
    }

    .cob-dot {
        width: 5px;
        height: 5px;
        background: var(--orange);
        border-radius: 50%;
        flex-shrink: 0;
        margin-top: 5px;
    }

    .cob-rt {
        font-size: 12px;
        color: rgba(255, 255, 255, .72);
        line-height: 1.5;
    }

    .cob-rt strong {
        color: rgba(255, 255, 255, .95);
        font-weight: 600;
    }

    .cob-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 14px;
    }

    .cob-pill {
        background: rgba(224, 123, 42, .15);
        border: 1px solid rgba(224, 123, 42, .28);
        color: var(--ol);
        padding: 3px 9px;
        border-radius: 9px;
        font-size: 9.5px;
        font-weight: 700;
    }

    .cob-mat {
        margin-top: 12px;
        padding: 9px 12px;
        background: rgba(255, 255, 255, .04);
        border-radius: 6px;
        font-size: 10.5px;
        color: rgba(255, 255, 255, .4);
    }

    .cob-mat span {
        color: rgba(255, 255, 255, .7);
        font-weight: 600;
    }

    /* INSTAGRAM */
    .ig-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 32px;
        margin-top: 28px;
    }

    .ig-profile {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .ig-av {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--navy), var(--orange));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 18px;
        color: #fff;
    }

    .ig-name {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 16px;
        color: var(--navy);
    }

    .ig-handle {
        font-size: 13px;
        color: var(--g500);
    }

    .ig-follow {
        display: flex;
        align-items: center;
        gap: 8px;
        background: var(--orange);
        color: #fff;
        padding: 11px 22px;
        border-radius: 4px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        transition: background .2s;
    }

    .ig-follow:hover {
        background: var(--ol);
    }

    .ig-cta-box {
        background: var(--navy);
        border-radius: 12px;
        padding: 48px 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .ig-cta-icon {
        font-size: 45px;
        color: #fff;
        font-weight: bold;
    }

    .ig-cta-title {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 24px;
        color: #fff;
    }

    .ig-cta-sub {
        font-size: 15px;
        color: rgba(255, 255, 255, .6);
        max-width: 440px;
        line-height: 1.75;
    }

    .ig-stats {
        display: flex;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 8px;
        overflow: hidden;
        margin-top: 4px;
    }

    .ig-stat {
        padding: 14px 32px;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, .1);
    }

    .ig-stat:last-child {
        border-right: none;
    }

    .ig-stat-n {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 14px;
        color: var(--orange);
    }

    .ig-stat-l {
        font-size: 10px;
        color: rgba(255, 255, 255, .4);
        margin-top: 4px;
        letter-spacing: .3px;
        text-transform: uppercase;
    }

    .ig-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--orange);
        color: #fff;
        padding: 14px 30px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        transition: all .2s;
    }

    .ig-cta-btn:hover {
        background: var(--ol);
        transform: translateY(-1px);
    }

    /* CLIENTES */
    .clientes-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 36px;
    }

    .cliente {
        background: var(--g50);
        border: 1px solid var(--g100);
        border-radius: 6px;
        padding: 13px 24px;
        font-weight: 700;
        font-size: 13px;
        color: var(--navy);
        transition: all .2s;
        cursor: default;
    }

    .cliente:hover {
        border-color: var(--orange);
        color: var(--orange);
        transform: translateY(-2px);
    }

    /* CONTACTO */
    .contacto-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        margin-top: 48px;
        align-items: start;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .cinfo-item {
        display: flex;
        gap: 14px;
        align-items: flex-start;
    }

    .cinfo-icon {
        width: 40px;
        height: 40px;
        background: rgba(27, 58, 107, .07);
        color: #112550;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex-shrink: 0;
    }

    .cinfo-label {
        font-size: 11px;
        color: var(--g500);
        font-weight: 500;
        margin-bottom: 3px;
    }

    .cinfo-value {
        font-size: 13px;
        color: var(--navy);
        font-weight: 600;
        line-height: 1.55;
    }

    .cinfo-value a {
        color: var(--navy);
        text-decoration: none;
    }

    .cinfo-value a:hover {
        color: var(--orange);
    }

    .wa-links {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-top: 2px;
    }

    .wa-link {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 12.5px;
        color: var(--navy);
        font-weight: 600;
        text-decoration: none;
        transition: color .2s;
    }

    .wa-link:hover {
        color: #25D366;
    }

    .wa-flag {
        font-size: 13px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 13px;
    }

    .finp {
        width: 100%;
        padding: 12px 15px;
        border: 1.5px solid var(--g100);
        border-radius: 6px;
        font-size: 13px;
        font-family: 'Inter', sans-serif;
        color: var(--tx);
        outline: none;
        transition: border-color .2s;
        background: var(--g50);
    }

    .finp:focus {
        border-color: var(--navy);
    }

    textarea.finp {
        height: 95px;
        resize: none;
    }

    .frow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 13px;
    }

    .fsub {
        background: var(--navy);
        color: #fff;
        padding: 13px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        letter-spacing: .3px;
        transition: background .2s;
    }

    .fsub:hover {
        background: var(--navy-light);
    }

    /* FOOTER */
    footer {
        background: var(--navy-dark);
        padding: 36px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .footer-mark {
        width: 32px;
        height: 32px;
        background: var(--orange);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 12px;
        color: #fff;
    }

    .footer-brand {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 14px;
        color: #fff;
    }

    .footer-copy {
        font-size: 11px;
        color: rgba(255, 255, 255, .35);
        margin-top: 3px;
    }

    .footer-links {
        display: flex;
        gap: 20px;
    }

    .footer-links a {
        font-size: 12px;
        color: rgba(255, 255, 255, .45);
        text-decoration: none;
        transition: color .2s;
    }

    .footer-links a:hover {
        color: #fff;
    }

    .footer-ig {
        display: flex;
        align-items: center;
        gap: 7px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .11);
        padding: 8px 16px;
        border-radius: 4px;
        font-size: 12px;
        color: #fff;
        text-decoration: none;
        transition: all .2s;
    }

    .footer-ig:hover {
        background: rgba(255, 255, 255, .14);
    }

    /* WHATSAPP FLOTANTE — doble botón AR + CL */
    .wa-float-wrap {
        position: fixed;
        bottom: 28px;
        right: 28px;
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }

    .wa-btn {
        display: flex;
        align-items: center;
        gap: 0;
        filter: drop-shadow(0 4px 14px rgba(37, 211, 102, 0.38));
        transition: all .3s;
    }

    .wa-btn:hover .wa-label {
        max-width: 200px;
        opacity: 1;
        padding: 9px 14px;
    }

    .wa-bubble {
        width: 52px;
        height: 52px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
        transition: transform .2s;
        position: relative;
    }

    .wa-bubble:hover {
        transform: scale(1.08);
    }

    .wa-bubble svg {
        width: 24px;
        height: 24px;
        fill: #fff;
    }

    .wa-label {
        background: #25D366;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        border-radius: 8px 0 0 8px;
        white-space: nowrap;
        max-width: 0;
        opacity: 0;
        overflow: hidden;
        transition: all .3s;
        padding: 9px 0;
        font-family: 'Inter', sans-serif;
    }

    .wa-country {
        position: absolute;
        bottom: -2px;
        right: -2px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid #fff;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 9px;
        line-height: 1;
    }

    /* RESPONSIVE */
    @media(max-width:768px) {
        nav {
            padding: 0 20px;
        }

        .nav-links {
            display: none;
        }

        .hero {
            padding: 80px 20px 50px;
        }

        .hero-grid {
            grid-template-columns: 1fr;
            gap: 36px;
        }

        .hero h1 {
            font-size: 36px;
        }

        section {
            padding: 56px 20px;
        }

        .nosotros {
            padding: 56px 20px;
        }

        .nosotros-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .nos-badge-float {
            bottom: -12px;
            right: 12px;
        }

        .serv-grid {
            grid-template-columns: 1fr;
        }

        .cob-grid {
            grid-template-columns: 1fr;
        }

        .contacto-grid {
            grid-template-columns: 1fr;
            gap: 36px;
        }

        .ig-head {
            flex-direction: column;
            align-items: flex-start;
            gap: 14px;
        }

        .ig-stats {
            flex-wrap: wrap;
        }

        .ig-stat {
            flex: 1;
            min-width: 120px;
        }

        footer {
            padding: 28px 20px;
        }

        .footer-links {
            display: none;
        }

        .wa-float-wrap {
            bottom: 20px;
            right: 20px;
        }

        .wa-bubble {
            width: 46px;
            height: 46px;
        }
    }