:root {
    --navy: #243556;
    --navy2: #16243d;
    --ink: #31405e;
    --muted: #858da0;
    --bg: #eef0f4;
    --white: #fff;
    --line: rgba(36, 53, 86, .12);
    --green: #2ca77b;
    --max: 1380px;
    --header: 76px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--bg);
    font-family: "Montserrat", sans-serif;
    color: var(--ink)
}

body.menu-open {
    overflow: hidden
}

a {
    text-decoration: none;
    color: inherit
}

button {
    font: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: auto
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header);
    color: #fff;
    transition: .25s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(12, 25, 45, .12);
    color: var(--navy2);
}

.nav {
    width: min(var(--max), calc(100% - 40px));
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) 270px;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo img {
    display: block;
    width: 220px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter .25s ease, width .25s ease;
}

.header.scrolled .logo img {
    filter: none;
}

.header.scrolled .desktop-menu a {
    color: var(--navy2);
}

.header.scrolled .pill {
    color: var(--navy2);
    border-color: rgba(22, 36, 61, .25);
    background: rgba(22, 36, 61, .03);
}

.header.scrolled .pill:hover {
    background: var(--navy2);
    border-color: var(--navy2);
    color: #fff;
}

.desktop-menu {
    display: flex;
    justify-content: center;
    gap: 28px;
    font-size: 12px;
    white-space: nowrap
}

.desktop-menu a {
    opacity: .88
}

.desktop-menu a:hover {
    opacity: 1
}

.nav-actions {
    justify-self: end;
    display: flex;
    gap: 8px
}

.pill {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 4px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    background: rgba(255, 255, 255, .06)
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
    position: relative
}

.menu-toggle:before,
.menu-toggle:after,
.menu-toggle span {
    content: "";
    position: absolute;
    left: 11px;
    width: 18px;
    height: 1.5px;
    background: #fff
}

.menu-toggle:before {
    top: 14px
}

.menu-toggle span {
    top: 20px
}

.menu-toggle:after {
    top: 26px
}

/* HERO */
.hero {
    min-height: 760px;
    height: min(86vh, 860px);
    position: relative;
    overflow: hidden;
    color: #fff;

    background-image: url("../img/hero.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(12, 24, 44, .68) 0%,
            rgba(12, 24, 44, .48) 38%,
            rgba(12, 24, 44, .20) 70%,
            rgba(12, 24, 44, .10) 100%);

    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    width: min(var(--max), calc(100% - 40px));
    height: 100%;
    margin: auto;
    display: flex;
    align-items: flex-end;
    padding-bottom: 64px;
    position: relative;
    z-index: 2;
}

.hero-copy {
    width: min(760px, 58vw);
}

.kicker {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 14px;
}

h1 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(50px, 5.15vw, 82px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
    max-width: 790px;
}

.hero p {
    margin: 17px 0 22px;
    max-width: 600px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .84);
}

.hero-actions {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.btn {
    min-height: 42px;
    padding: 0 17px;
    /*border-radius: 999px;*/
    border: 1px solid rgba(255, 255, 255, .5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
}

.btn.primary {
    background: #fff;
    color: var(--navy2);
    font-weight: 600;
    border-color: #fff;
}

.hero-card {
    position: absolute;
    right: max(20px, calc((100vw - var(--max))/2));
    bottom: 62px;
    width: 340px;
    background: #fff;
    color: var(--ink);
    border-radius: 17px;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 18px 44px rgba(10, 24, 45, .24);
}

.hero-card-top {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 134px;
}

.hero-card-photo {
    background: linear-gradient(180deg, #f4f7fb, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    font-size: 12px;
    color: #738095;
    text-align: center;
}

.hero-card-stats {
    display: grid;
    grid-template-rows: 1fr 1fr;
}

.stat {
    padding: 16px;
    border-left: 1px solid var(--line);
}

.stat+.stat {
    border-top: 1px solid var(--line);
}

.stat strong {
    display: block;
    font: 500 24px/1 "Montserrat", sans-serif;
    color: #3b4d75;
}

.stat span {
    font-size: 10px;
    color: #9aa3b1;
}

.hero-card-bottom {
    height: 42px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    font-size: 10px;
    color: #727c8e;
}


/* =========================================
   PRESENTACIÓN PROFESIONAL
   ========================================= */

.about-professional {
    background: #eef6fd;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

.about-professional-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 45px;
}

.about-copy {
    max-width: 650px;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 15px;
    background: #dff4e9;
    border-radius: 999px;
    color: #075b7e;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .16em;
}

.about-kicker span {
    color: #0867ae;
    font-size: 15px;
}

.about-copy h2 {
    margin: 28px 0 4px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(44px, 4.2vw, 52px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.045em;
    color: #0b69b7;
}

.about-tagline {
    margin-bottom: 20px;
    color: #1674bd;
    font-size: 19px;
    font-style: italic;
    font-weight: 400;
}

.about-copy h3 {
    margin: 0 0 24px;
    font-size: 15px;
    font-weight: 600;
    color: #00725b;
}

.about-copy h3 span {
    color: #234d53;
    font-weight: 500;
}

.about-copy p {
    max-width: 610px;
    margin: 0;
    font-size: 15px;
    line-height: 1.85;
    color: #4a5b63;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.about-btn {
    min-height: 48px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: .25s ease;
}

.about-btn.whatsapp {
    background: #18bd63;
    color: #fff;
    box-shadow: 0 10px 24px rgba(24, 189, 99, .18);
}

.about-btn.whatsapp:hover {
    background: #12a957;
    transform: translateY(-2px);
}

.about-btn.call {
    border: 1px solid #0b69b7;
    color: #0b69b7;
    background: transparent;
}

.about-btn.call:hover {
    background: #0b69b7;
    color: #fff;
}

.about-photo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    isolation: isolate;
}

.about-photo::before {
    content: "";
    position: absolute;
    width: 310px;
    height: 310px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(45, 167, 123, .08);
    z-index: 0;
}

.about-photo-frame {
    position: relative;
    z-index: 1;
    width: min(410px, 100%);
    aspect-ratio: .88 / 1;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(31, 57, 84, .15);
}

.about-photo-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 18%;
    transition: transform .45s ease;
}

.about-photo-frame:hover img {
    transform: scale(1.025);
}

.professional-badge {
    position: absolute;
    z-index: 2;
    right: -8px;
    bottom: 24px;
    background: rgba(0, 116, 88, .95);
    color: #fff;
    padding: 10px 17px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .03em;
    box-shadow: 0 12px 28px rgba(0, 93, 70, .20);
}

@media (max-width: 900px) {
    .about-professional {
        padding: 60px 20px 70px;
    }

    .about-professional-inner {
        width: min(680px, 100%);
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-copy {
        max-width: 100%;
    }

    .about-photo {
        order: -1;
        justify-content: center;
    }

    .about-photo-frame {
        width: min(430px, 100%);
    }

    .professional-badge {
        right: 10px;
    }
}

@media (max-width: 520px) {
    .about-professional {
        padding: 46px 16px 56px;
    }

    .about-copy h2 {
        font-size: 36px;
    }

    .about-copy p {
        font-size: 14px;
        line-height: 1.75;
    }

    .about-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-btn {
        width: 100%;
    }

    .about-photo-frame {
        width: 100%;
        border-radius: 14px;
    }

    .professional-badge {
        right: 8px;
        bottom: 14px;
    }
}

/* generic sections */
.main {
    width: min(var(--max), calc(100% - 28px));
    margin: 14px auto 48px
}

.quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
}

.quick article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 25px;
    min-height: 160px
}

.quick h3 {
    margin: 0 0 9px;
    font: 400 21px/1.08 "Montserrat", sans-serif;
    color: #415075
}

.quick p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: #9ca4b1
}

.section {
    margin-top: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px 18px 18px
}

.section-head {
    padding: 0 8px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.title-wrap {
    display: flex;
    align-items: center;
    gap: 13px
}

.tag {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 10px;
    color: #7c8495
}

h2 {
    margin: 0;
    font: 400 clamp(30px, 3vw, 43px)/1 "Montserrat", sans-serif;
    letter-spacing: -.035em
}

.section-note {
    font-size: 11px;
    color: #80889a
}

.cards4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px
}

.service {
    background: #f7f8fa;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden
}

.service-visual {
    width: 100%;
    aspect-ratio: 1.3 / 1;
    overflow: hidden;
    background: #eef2f6;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .4s ease;
}

.service:hover .service-visual img {
    transform: scale(1.04);
}

.service-body {
    padding: 17px
}

.service small {
    font-size: 9px;
    letter-spacing: .11em;
    color: #8a92a1
}

.service h3 {
    margin: 6px 0 7px;
    font-size: 16px;
    font-weight: 500
}

.service p {
    font-size: 12px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0 0 13px
}

.service a {
    font-size: 11px;
    color: var(--navy);
    font-weight: 600
}

.iv {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 10px
}

.iv-intro {
    background: var(--navy2);
    color: #fff;
    border-radius: 17px;
    padding: 30px
}

.iv-intro h3 {
    font: 400 34px/1.05 "Montserrat", sans-serif;
    margin: 10px 0
}

.iv-intro p {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.65
}

.tabs {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 14px
}

.tab {
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 9px 12px;
    border-radius: 999px;
    font-size: 10px
}

.iv-content {
    background: #f7f8fa;
    border-radius: 17px;
    padding: 26px
}

.iv-content h3 {
    margin: 0 0 10px;
    font: 500 23px "Montserrat", sans-serif
}

.iv-content p,
.iv-content li {
    font-size: 12px;
    line-height: 1.6;
    color: #747e90
}

.iv-content ul {
    padding-left: 18px
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px
}

.step {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px
}

.num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e9edf4;
    display: grid;
    place-items: center;
    font-size: px;
    color: #40517b;
    margin-bottom: 18px
}

.step h3 {
    margin: 0 0 7px;
    font-size: 16px;
    font-weight: 500
}

.step p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: var(--muted)
}

.coverage {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 20px;
    align-items: start
}

.coverage-copy p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65
}

.districts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.districts span {
    padding: 10px 13px;
    background: #f5f7fa;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 11px
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px
}

.trust-item {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f8f9fb
}

.trust-item strong {
    font: 500 27px "Montserrat", sans-serif;
    color: #40517b;
    display: block;
    margin-bottom: 7px
}

.trust-item span {
    font-size: 12px;
    color: #81899a
}

.contact {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 10px
}

.contact-main,
.contact-side {
    border-radius: 17px;
    padding: 30px
}

.contact-main {
    background: var(--navy2);
    color: #fff
}

.contact-main h3 {
    font: 400 35px/1.08 "Montserrat", sans-serif;
    margin: 0 0 12px
}

.contact-main p {
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .72)
}

.contact-side {
    background: #f6f7fa
}

.contact-side h3 {
    margin-top: 0;
    font: 500 21px "Montserrat", sans-serif
}

.contact-side p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6
}

.opinion {
    padding: 28px;
    background: #f7f8fa;
    border-radius: 17px
}

.opinion h3 {
    margin: 0 0 10px;
    font: 500 23px "Montserrat", sans-serif
}

.opinion p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65
}

.faq {
    display: grid;
    gap: 8px
}

details {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fafbfc;
    padding: 0 18px
}

summary {
    cursor: pointer;
    padding: 17px 0;
    font-size: 13px;
    font-weight: 500
}

details p {
    margin: 0 0 17px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65
}

.final-cta {
    margin-top: 34px;
    padding: 40px 34px;
    border-radius: 22px;
    background: var(--navy);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px
}

.final-cta h2 {
    max-width: 750px
}

.final-cta p {
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
    max-width: 650px
}

footer {
    padding: 24px 4px 6px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: #8991a0;
    font-size: 11px
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(18, 32, 54, .985);
    color: #fff;
    padding: calc(var(--header) + 24px) 20px 26px;
    transform: translateX(100%);
    transition: .28s ease;
    display: flex;
    flex-direction: column
}

.mobile-menu.open {
    transform: translateX(0)
}

.mobile-menu nav {
    display: flex;
    flex-direction: column
}

.mobile-menu nav a {
    padding: 16px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font: 400 21px "Montserrat", sans-serif
}

.mobile-menu .mobile-actions {
    margin-top: auto;
    display: grid;
    gap: 8px
}

.mobile-menu .mobile-actions a {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px
}

.mobile-menu .mobile-actions a:first-child {
    background: #fff;
    color: var(--navy2);
    font-weight: 600
}

@media(max-width:1080px) {
    .nav {
        grid-template-columns: 185px minmax(0, 1fr) 225px;
        gap: 12px;
        width: calc(100% - 30px)
    }

    .logo img {
        width: 180px;
    }

    .desktop-menu {
        gap: 15px;
        font-size: 10px
    }

    .pill {
        padding: 0 10px
    }

    .hero-inner {
        width: calc(100% - 36px)
    }

    .hero-copy {
        width: min(650px, 63vw)
    }

    .hero-card {
        right: 18px;
        width: 300px
    }

    .cards4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:820px) {
    :root {
        --header: 64px
    }

    .header {
        background: rgba(18, 32, 54, .90);
        backdrop-filter: blur(12px)
    }

    .nav {
        width: calc(100% - 24px);
        grid-template-columns: 1fr auto
    }

    .logo img {
        width: 170px;
    }

    .header.scrolled .menu-toggle {
        border-color: rgba(22, 36, 61, .28);
        background: rgba(22, 36, 61, .04);
    }

    .header.scrolled .menu-toggle:before,
    .header.scrolled .menu-toggle:after,
    .header.scrolled .menu-toggle span {
        background: var(--navy2);
    }

    .desktop-menu,
    .nav-actions {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .hero {
        height: auto;
        min-height: 100svh;
        background-image: url("../img/hero.png");
        background-position: 62% center;
    }

    .hero-inner {
        width: calc(100% - 28px);
        min-height: 100svh;
        padding: 0 0 30px;
        align-items: flex-end
    }

    .hero-copy {
        width: 100%;
        max-width: 590px
    }

    h1 {
        font-size: clamp(38px, 11vw, 55px)
    }

    .hero p {
        font-size: 12px
    }

    .hero-card {
        display: none
    }

    .main {
        width: calc(100% - 14px);
        margin-top: 7px
    }

    .quick {
        grid-template-columns: 1fr
    }

    .quick article {
        min-height: auto;
        padding: 20px
    }

    .section {
        margin-top: 8px;
        padding: 23px 8px 8px;
        border-radius: 18px
    }

    .section-head {
        padding: 0 8px 18px;
        align-items: flex-start
    }

    .title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 9px
    }

    .cards4 {
        grid-template-columns: 1fr
    }

    .service-visual {
        aspect-ratio: 1.7/1
    }

    .iv {
        grid-template-columns: 1fr
    }

    .steps {
        grid-template-columns: repeat(2, 1fr)
    }

    .coverage {
        grid-template-columns: 1fr
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact {
        grid-template-columns: 1fr
    }

    .final-cta {
        margin-top: 8px;
        padding: 30px 22px;
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width:520px) {
    .logo img {
        width: 155px;
    }

    .hero {
        background-position: 66% center
    }

    .hero-inner {
        width: calc(100% - 24px)
    }

    h1 {
        font-size: clamp(36px, 11.6vw, 48px)
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%
    }

    .btn {
        width: 100%;
        padding: 0 10px
    }

    .section-head {
        flex-direction: column
    }

    .cards4,
    .steps,
    .trust-grid {
        grid-template-columns: 1fr
    }

    .service-visual {
        aspect-ratio: 1.45/1
    }

    .iv-intro,
    .iv-content {
        padding: 22px
    }

    .contact-main,
    .contact-side {
        padding: 22px
    }
}

/* =========================================
   REDES SOCIALES
   ========================================= */

.social-section {
    padding: 70px 20px;
    background: #f7f9fc;
}

.social-inner {
    width: min(1200px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 70px;
}

.social-copy {
    max-width: 460px;
}

.social-kicker {
    display: inline-block;
    margin-bottom: 14px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: .16em;

    color: #0b69b7;
}

.social-copy h2 {
    margin: 0 0 16px;

    font-size: clamp(32px, 3vw, 46px);
    font-weight: 500;
    line-height: 1.08;

    color: var(--navy2);
}

.social-copy p {
    margin: 0;

    font-size: 14px;
    line-height: 1.75;

    color: var(--muted);
}


.social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.social-card {
    min-height: 145px;
    padding: 22px;

    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: .25s ease;
}

.social-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 38px rgba(30, 53, 82, .10);
}

.social-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    background: #edf4fb;
    color: #0b69b7;

    border-radius: 50%;

    font-size: 18px;
    font-weight: 600;
}

.social-card div {
    margin-top: 24px;
}

.social-card strong {
    display: block;

    font-size: 14px;
    font-weight: 600;

    color: var(--navy2);
}

.social-card small {
    display: block;
    margin-top: 4px;

    font-size: 11px;

    color: var(--muted);
}

.social-arrow {
    margin-top: 16px;

    font-size: 14px;

    color: #0b69b7;
}


@media (max-width: 900px) {

    .social-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .social-copy {
        max-width: 620px;
    }
}


@media (max-width: 700px) {

    .social-section {
        padding: 50px 16px;
    }

    .social-links {
        grid-template-columns: 1fr;
    }

    .social-card {
        min-height: auto;
    }
}

/* =========================================
   WHATSAPP FLOTANTE
   ========================================= */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    border-radius: 50%;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .20);

    z-index: 9999;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.whatsapp-float svg {
    width: 31px;
    height: 31px;
    fill: #fff;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    background: #20bd5a;

    box-shadow:
        0 15px 35px rgba(37, 211, 102, .30);
}


/* TEXTO QUE APARECE AL PASAR EL MOUSE */

.whatsapp-tooltip {
    position: absolute;

    right: 72px;

    padding: 9px 13px;

    background: #fff;
    color: #23364d;

    border-radius: 5px;

    font-size: 11px;
    font-weight: 600;

    white-space: nowrap;

    box-shadow:
        0 8px 25px rgba(20, 40, 65, .14);

    opacity: 0;
    visibility: hidden;

    transform: translateX(8px);

    transition: .25s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* PULSO MUY SUAVE */

.whatsapp-float::before {
    content: "";

    position: absolute;
    inset: -5px;

    border: 1px solid rgba(37, 211, 102, .45);
    border-radius: 50%;

    animation: whatsappPulse 2.5s infinite;
}

@keyframes whatsappPulse {

    0% {
        transform: scale(.9);
        opacity: .8;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}


/* MÓVIL */

@media (max-width: 600px) {

    .whatsapp-float {
        width: 54px;
        height: 54px;

        right: 16px;
        bottom: 18px;
    }

    .whatsapp-float svg {
        width: 29px;
        height: 29px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ==========================================
   SERVICIOS DESTACADOS
   ========================================== */

.quick-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}


/* TARJETA */

.quick-service {
    position: relative;

    min-height: 230px;
    padding: 28px 28px 26px;

    background: #fff;

    border: 1px solid rgba(36, 53, 86, .10);
    border-radius: 14px;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


/* Línea superior */

.quick-service::before {
    content: "";

    position: absolute;
    top: 0;
    left: 28px;

    width: 42px;
    height: 3px;

    background: #2ca77b;

    transition: width .35s ease;
}


/* CABECERA */

.quick-service-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 38px;
}


/* NÚMERO */

.quick-number {
    font-size: 12px;
    font-weight: 600;

    letter-spacing: .12em;

    color: #a1a9b7;
}


/* ICONO */

.quick-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    background: #edf7f4;

    border-radius: 50%;

    color: #178764;
}

.quick-icon svg {
    width: 23px;
    height: 23px;
}


/* TEXTO PEQUEÑO */

.quick-label {
    display: block;

    margin-bottom: 8px;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .13em;

    color: #2ca77b;
}


/* TÍTULO */

.quick-service h3 {
    margin: 0 0 10px;

    font-family: "Montserrat", sans-serif;

    font-size: 18px;
    font-weight: 500;

    line-height: 1.3;

    color: #243556;
}


/* DESCRIPCIÓN */

.quick-service p {
    max-width: 330px;

    margin: 0;

    font-size: 12px;
    line-height: 1.65;

    color: #858da0;
}


/* FLECHA */

.quick-arrow {
    position: absolute;

    right: 26px;
    bottom: 24px;

    font-size: 18px;

    color: #2ca77b;

    opacity: 0;

    transform: translateX(-8px);

    transition:
        opacity .3s ease,
        transform .3s ease;
}


/* HOVER */

.quick-service:hover {
    transform: translateY(-5px);

    border-color: rgba(44, 167, 123, .25);

    box-shadow:
        0 20px 45px rgba(31, 53, 82, .09);
}

.quick-service:hover::before {
    width: 75px;
}

.quick-service:hover .quick-arrow {
    opacity: 1;
    transform: translateX(0);
}


/* TABLET */

@media (max-width: 900px) {

    .quick-services {
        grid-template-columns: 1fr;
    }

    .quick-service {
        min-height: 200px;
    }

}


/* MÓVIL */

@media (max-width: 600px) {

    .quick-service {
        padding: 24px 22px;
    }

    .quick-service-top {
        margin-bottom: 28px;
    }

    .quick-icon {
        width: 42px;
        height: 42px;
    }

    .quick-service h3 {
        font-size: 17px;
    }
}