/* =========================================================
   LIMPIEZA Y MANTENIMIENTO BOGOTÁ
   CSS PRINCIPAL
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --navy: #071b35;
    --navy-2: #0a294b;

    --blue: #106bc9;
    --blue-light: #24b5e8;

    --turquoise: #62d5c8;

    --white: #ffffff;

    --gray-50: #f7fafc;
    --gray-100: #eef3f7;
    --gray-300: #d8e1e9;
    --gray-500: #657487;
    --gray-700: #273548;

    --shadow:
        0 18px 50px rgba(7, 27, 53, .10);

    --shadow-strong:
        0 28px 80px rgba(7, 27, 53, .17);

    --radius:
        20px;

    --container:
        1200px;

    --transition:
        .35s ease;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior:
        smooth;

}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color:
        var(--gray-700);

    background:
        var(--white);

    line-height:
        1.7;

    overflow-x:
        hidden;

}


img {

    display:
        block;

    max-width:
        100%;

    height:
        auto;

}


a {

    color:
        inherit;

    text-decoration:
        none;

}


button,
input,
textarea,
select {

    font:
        inherit;

}


button {

    cursor:
        pointer;

}


.container {

    width:
        min(92%, var(--container));

    margin:
        0 auto;

}


/* =========================================================
   HEADER
========================================================= */

.header {

    position:
        sticky;

    top:
        0;

    z-index:
        1000;

    background:
        rgba(255,255,255,.97);

    backdrop-filter:
        blur(14px);

    border-bottom:
        1px solid var(--gray-100);

    box-shadow:
        0 5px 25px rgba(7,27,53,.05);

}


.header-inner {

    min-height:
        86px;

    display:
        flex;

    align-items:
        center;

    gap:
        28px;

}


.logo {

    display:
        flex;

    align-items:
        center;

    flex-shrink:
        0;

}


.logo img {

    width:
        175px;

    height:
        auto;

}


.main-nav {

    margin-left:
        auto;

}


.main-nav ul {

    display:
        flex;

    align-items:
        center;

    gap:
        24px;

    list-style:
        none;

}


.main-nav a {

    position:
        relative;

    color:
        var(--navy);

    font-size:
        14px;

    font-weight:
        700;

    transition:
        var(--transition);

}


.main-nav a::after {

    content:
        "";

    position:
        absolute;

    left:
        0;

    bottom:
        -8px;

    width:
        0;

    height:
        2px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--turquoise)
        );

    transition:
        var(--transition);

}


.main-nav a:hover {

    color:
        var(--blue);

}


.main-nav a:hover::after {

    width:
        100%;

}


.header-button {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        12px 18px;

    border-radius:
        999px;

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-light)
        );

    font-size:
        13px;

    font-weight:
        800;

    white-space:
        nowrap;

    box-shadow:
        0 10px 25px rgba(16,107,201,.22);

}


.menu-button {

    display:
        none;

    width:
        44px;

    height:
        44px;

    border:
        0;

    border-radius:
        10px;

    background:
        var(--navy);

}


.menu-button span {

    display:
        block;

    width:
        22px;

    height:
        2px;

    margin:
        4px auto;

    background:
        var(--white);

}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        52px;

    padding:
        0 24px;

    border-radius:
        12px;

    font-size:
        14px;

    font-weight:
        800;

    transition:
        var(--transition);

}


.btn-primary {

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-light)
        );

    box-shadow:
        0 12px 30px rgba(16,107,201,.22);

}


.btn-primary:hover {

    transform:
        translateY(-3px);

}


.btn-secondary {

    color:
        var(--navy);

    background:
        var(--white);

    border:
        1px solid var(--gray-300);

}


.btn-secondary:hover {

    color:
        var(--blue);

    border-color:
        var(--blue-light);

    transform:
        translateY(-3px);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position:
        relative;

    padding:
        85px 0 95px;

    overflow:
        hidden;

    background:
        linear-gradient(
            135deg,
            #f8fcff 0%,
            #eff8ff 50%,
            #f5fffd 100%
        );

}


.hero::before {

    content:
        "";

    position:
        absolute;

    width:
        520px;

    height:
        520px;

    right:
        -240px;

    top:
        -270px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(36,181,232,.18),
            transparent 70%
        );

}


.hero-grid {

    position:
        relative;

    z-index:
        2;

    display:
        grid;

    grid-template-columns:
        1.02fr .98fr;

    gap:
        65px;

    align-items:
        center;

}


.hero-content {

    animation:
        fadeUp .8s ease both;

}


.eyebrow {

    display:
        inline-flex;

    padding:
        7px 13px;

    margin-bottom:
        18px;

    border:
        1px solid rgba(36,181,232,.20);

    border-radius:
        999px;

    background:
        rgba(255,255,255,.80);

    color:
        var(--blue);

    font-size:
        13px;

    font-weight:
        800;

}


.hero h1 {

    max-width:
        760px;

    margin-bottom:
        22px;

    color:
        var(--navy);

    font-size:
        clamp(42px, 5vw, 65px);

    line-height:
        1.06;

    letter-spacing:
        -2px;

}


.hero p {

    max-width:
        650px;

    margin-bottom:
        30px;

    color:
        var(--gray-500);

    font-size:
        18px;

}


.hero-actions {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        13px;

}


.hero-trust {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        18px;

    margin-top:
        35px;

}


.hero-trust div {

    display:
        flex;

    flex-direction:
        column;

}


.hero-trust strong {

    color:
        var(--navy);

    font-size:
        18px;

}


.hero-trust span {

    color:
        var(--gray-500);

    font-size:
        12px;

}


.hero-image {

    position:
        relative;

    min-height:
        480px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    animation:
        fadeUp 1s ease .15s both;

}


.hero-image img {

    position:
        relative;

    z-index:
        2;

    width:
        100%;

    max-width:
        650px;

    height:
        500px;

    object-fit:
        cover;

    border-radius:
        24px;

    box-shadow:
        var(--shadow-strong);

}


.hero-card {

    position:
        absolute;

    z-index:
        3;

    left:
        -10px;

    bottom:
        25px;

    display:
        flex;

    flex-direction:
        column;

    padding:
        15px 19px;

    border-radius:
        14px;

    background:
        rgba(255,255,255,.96);

    box-shadow:
        var(--shadow);

}


.hero-card strong {

    color:
        var(--navy);

    font-size:
        14px;

}


.hero-card span {

    color:
        var(--gray-500);

    font-size:
        12px;

}


/* =========================================================
   GENERALES
========================================================= */

.intro,
.services,
.benefits,
.coverage,
.faq,
.contact {

    padding:
        100px 0;

}


.section-heading {

    max-width:
        800px;

    margin:
        0 auto 55px;

    text-align:
        center;

}


.section-label {

    display:
        inline-block;

    margin-bottom:
        10px;

    color:
        var(--blue);

    font-size:
        13px;

    font-weight:
        900;

    letter-spacing:
        .8px;

    text-transform:
        uppercase;

}


.section-heading h2,
.intro h2,
.main-brand h2,
.contact-info h2 {

    color:
        var(--navy);

    font-size:
        clamp(32px, 4vw, 46px);

    line-height:
        1.15;

}


.section-heading p {

    margin-top:
        14px;

    color:
        var(--gray-500);

}


/* =========================================================
   INTRO
========================================================= */

.intro {

    background:
        var(--white);

}


.intro-grid {

    display:
        grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap:
        75px;

}


.intro-grid p {

    margin-bottom:
        16px;

    color:
        var(--gray-500);

    font-size:
        16px;

}


/* =========================================================
   SERVICES
========================================================= */

.services {

    background:
        var(--gray-50);

}


.services-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:
        24px;

}


.service-card {

    overflow:
        hidden;

    border:
        1px solid var(--gray-100);

    border-radius:
        var(--radius);

    background:
        var(--white);

    box-shadow:
        0 8px 30px rgba(7,27,53,.05);

    transition:
        var(--transition);

}


.service-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        var(--shadow);

}


.service-image {

    height:
        230px;

    overflow:
        hidden;

}


.service-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform .6s ease;

}


.service-card:hover .service-image img {

    transform:
        scale(1.06);

}


.service-content {

    padding:
        27px;

}


.service-number {

    color:
        var(--blue-light);

    font-size:
        12px;

    font-weight:
        900;

}


.service-content h3 {

    margin:
        8px 0 12px;

    color:
        var(--navy);

    font-size:
        21px;

    line-height:
        1.25;

}


.service-content p {

    margin-bottom:
        18px;

    color:
        var(--gray-500);

    font-size:
        14px;

}


.service-content a {

    color:
        var(--blue);

    font-size:
        14px;

    font-weight:
        800;

}


/* =========================================================
   MAIN BRAND
========================================================= */

.main-brand {

    padding:
        90px 0;

    background:
        var(--navy);

    color:
        var(--white);

}


.main-brand-grid {

    display:
        grid;

    grid-template-columns:
        1.1fr .9fr;

    align-items:
        center;

    gap:
        70px;

}


.main-brand .section-label {

    color:
        var(--turquoise);

}


.main-brand h2 {

    margin-bottom:
        18px;

    color:
        var(--white);

}


.main-brand p {

    max-width:
        650px;

    margin-bottom:
        28px;

    color:
        #c7d5e4;

}


.main-brand-card {

    padding:
        35px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius:
        22px;

    background:
        rgba(255,255,255,.07);

}


.main-brand-card strong {

    display:
        block;

    margin-bottom:
        8px;

    color:
        var(--white);

    font-size:
        23px;

}


.main-brand-card span {

    display:
        block;

    margin-bottom:
        20px;

    color:
        #a8bbcf;

}


.main-brand-card a {

    color:
        var(--turquoise);

    font-weight:
        800;

}


/* =========================================================
   BENEFITS
========================================================= */

.benefits {

    background:
        var(--white);

}


.benefits-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:
        20px;

}


.benefits-grid article {

    padding:
        30px 24px;

    border:
        1px solid var(--gray-100);

    border-radius:
        18px;

    background:
        var(--white);

    transition:
        var(--transition);

}


.benefits-grid article:hover {

    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow);

}


.benefit-icon {

    width:
        46px;

    height:
        46px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        18px;

    border-radius:
        13px;

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--turquoise)
        );

    font-weight:
        900;

}


.benefits-grid h3 {

    margin-bottom:
        9px;

    color:
        var(--navy);

    font-size:
        18px;

}


.benefits-grid p {

    color:
        var(--gray-500);

    font-size:
        14px;

}


/* =========================================================
   COVERAGE
========================================================= */

.coverage {

    background:
        linear-gradient(
            135deg,
            #eefaff,
            #f2fffc
        );

}


.coverage-list {

    display:
        flex;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        12px;

}


.coverage-list span {

    padding:
        10px 18px;

    border:
        1px solid rgba(36,181,232,.18);

    border-radius:
        999px;

    background:
        var(--white);

    color:
        var(--navy);

    font-size:
        13px;

    font-weight:
        700;

    box-shadow:
        0 5px 18px rgba(7,27,53,.05);

}


/* =========================================================
   FAQ
========================================================= */

.faq {

    background:
        var(--white);

}


.faq-container {

    max-width:
        850px;

    margin:
        0 auto;

}


.faq-item {

    border-bottom:
        1px solid var(--gray-100);

}


.faq-question {

    width:
        100%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    padding:
        22px 5px;

    border:
        0;

    background:
        transparent;

    color:
        var(--navy);

    text-align:
        left;

    font-size:
        16px;

    font-weight:
        800;

}


.faq-question span {

    flex-shrink:
        0;

    width:
        32px;

    height:
        32px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    color:
        var(--blue);

    background:
        #edf7ff;

    font-size:
        20px;

    transition:
        var(--transition);

}


.faq-item.active .faq-question span {

    transform:
        rotate(45deg);

}


.faq-answer {

    max-height:
        0;

    overflow:
        hidden;

    transition:
        max-height .4s ease;

}


.faq-answer p {

    padding:
        0 40px 22px 5px;

    color:
        var(--gray-500);

    font-size:
        14px;

}


/* =========================================================
   CTA
========================================================= */

.cta {

    padding:
        75px 0;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-2)
        );

}


.cta-content {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        40px;

}


.cta h2 {

    max-width:
        700px;

    margin-bottom:
        8px;

    color:
        var(--white);

    font-size:
        clamp(30px,4vw,44px);

    line-height:
        1.15;

}


.cta p {

    color:
        #bfcede;

}


/* =========================================================
   CONTACT
========================================================= */

.contact {

    background:
        var(--gray-50);

}


.contact-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        70px;

}


.contact-info h2 {

    margin-bottom:
        20px;

}


.contact-info > p {

    max-width:
        600px;

    margin-bottom:
        30px;

    color:
        var(--gray-500);

}


.contact-data {

    display:
        grid;

    gap:
        18px;

}


.contact-data div {

    display:
        flex;

    flex-direction:
        column;

}


.contact-data strong {

    color:
        var(--navy);

    font-size:
        14px;

}


.contact-data span,
.contact-data a {

    color:
        var(--gray-500);

    font-size:
        14px;

}


.contact-data a:hover {

    color:
        var(--blue);

}


.contact-card {

    padding:
        35px;

    border:
        1px solid var(--gray-100);

    border-radius:
        22px;

    background:
        var(--white);

    box-shadow:
        var(--shadow);

}


.contact-card h3 {

    margin-bottom:
        22px;

    color:
        var(--navy);

    font-size:
        24px;

}


.contact-card form {

    display:
        grid;

    gap:
        9px;

}


.contact-card label {

    margin-top:
        7px;

    color:
        var(--navy);

    font-size:
        13px;

    font-weight:
        800;

}


.contact-card input,
.contact-card select,
.contact-card textarea {

    width:
        100%;

    padding:
        13px 14px;

    border:
        1px solid var(--gray-300);

    border-radius:
        10px;

    outline:
        none;

    color:
        var(--gray-700);

    background:
        #fcfdff;

}


.contact-card textarea {

    resize:
        vertical;

    min-height:
        120px;

}


.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {

    border-color:
        var(--blue-light);

    box-shadow:
        0 0 0 3px rgba(36,181,232,.10);

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    color:
        #b9c7d6;

    background:
        #06172b;

}


.footer-grid {

    display:
        grid;

    grid-template-columns:
        1.3fr 1fr 1fr;

    gap:
        50px;

    padding:
        65px 0;

}


.footer-logo {

    width:
        170px;

    margin-bottom:
        20px;

}


.footer h3 {

    margin-bottom:
        16px;

    color:
        var(--white);

    font-size:
        17px;

}


.footer p {

    max-width:
        430px;

    font-size:
        14px;

}


.footer a {

    display:
        block;

    margin-bottom:
        9px;

    color:
        #b9c7d6;

    font-size:
        14px;

}


.footer a:hover {

    color:
        var(--turquoise);

}


.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,.08);

}


.footer-bottom p {

    max-width:
        none;

    padding:
        18px 0;

    text-align:
        center;

    color:
        #7e93a9;

    font-size:
        12px;

}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-whatsapp,
.floating-call {

    position:
        fixed;

    z-index:
        900;

    right:
        20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    min-width:
        100px;

    height:
        46px;

    border-radius:
        999px;

    color:
        var(--white);

    font-size:
        12px;

    font-weight:
        900;

    box-shadow:
        0 10px 30px rgba(0,0,0,.20);

}


.floating-whatsapp {

    bottom:
        75px;

    background:
        #16a34a;

}


.floating-call {

    bottom:
        18px;

    background:
        var(--blue);

}


/* =========================================================
   ANIMACIONES
========================================================= */

@keyframes fadeUp {

    from {

        opacity:
            0;

        transform:
            translateY(25px);

    }

    to {

        opacity:
            1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   SCROLL
========================================================= */

.scroll-reveal {

    opacity:
        0;

    transform:
        translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}


.scroll-reveal.visible {

    opacity:
        1;

    transform:
        translateY(0);

}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1000px) {


    .main-nav {

        position:
            absolute;

        top:
            86px;

        left:
            0;

        width:
            100%;

        padding:
            15px 4% 22px;

        background:
            rgba(255,255,255,.98);

        box-shadow:
            0 20px 35px rgba(7,27,53,.10);

        opacity:
            0;

        visibility:
            hidden;

        transform:
            translateY(-10px);

        transition:
            var(--transition);

    }


    .main-nav.active {

        opacity:
            1;

        visibility:
            visible;

        transform:
            translateY(0);

    }


    .main-nav ul {

        flex-direction:
            column;

        align-items:
            stretch;

        gap:
            0;

    }


    .main-nav li {

        border-bottom:
            1px solid var(--gray-100);

    }


    .main-nav a {

        display:
            block;

        padding:
            13px 0;

    }


    .main-nav a::after {

        display:
            none;

    }


    .menu-button {

        display:
            block;

        margin-left:
            auto;

    }


    .header-button {

        display:
            none;

    }


    .hero-grid {

        grid-template-columns:
            1fr;

    }


    .hero-content {

        max-width:
            800px;

        text-align:
            center;

        margin:
            0 auto;

    }


    .hero-actions {

        justify-content:
            center;

    }


    .hero-trust {

        max-width:
            650px;

        margin:
            35px auto 0;

    }


    .hero-image {

        max-width:
            700px;

        width:
            100%;

        margin:
            0 auto;

    }


    .intro-grid {

        grid-template-columns:
            1fr;

        gap:
            25px;

    }


    .services-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .benefits-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .main-brand-grid {

        grid-template-columns:
            1fr;

    }


    .contact-grid {

        grid-template-columns:
            1fr;

    }


    .footer-grid {

        grid-template-columns:
            1fr 1fr;

    }

}


/* =========================================================
   RESPONSIVE MÓVIL
========================================================= */

@media (max-width: 600px) {


    .container {

        width:
            min(92%, 540px);

    }


    .logo img {

        width:
            145px;

    }


    .hero {

        padding:
            55px 0 65px;

    }


    .hero h1 {

        font-size:
            36px;

        letter-spacing:
            -1px;

    }


    .hero p {

        font-size:
            16px;

    }


    .hero-actions {

        flex-direction:
            column;

    }


    .hero-actions .btn {

        width:
            100%;

    }


    .hero-trust {

        grid-template-columns:
            1fr;

        text-align:
            center;

    }


    .hero-image {

        min-height:
            290px;

    }


    .hero-image img {

        height:
            290px;

        border-radius:
            18px;

    }


    .hero-card {

        left:
            5px;

        bottom:
            12px;

    }


    .intro,
    .services,
    .benefits,
    .coverage,
    .faq,
    .contact {

        padding:
            70px 0;

    }


    .section-heading h2,
    .intro h2,
    .main-brand h2,
    .contact-info h2 {

        font-size:
            31px;

    }


    .services-grid,
    .benefits-grid {

        grid-template-columns:
            1fr;

    }


    .service-image {

        height:
            210px;

    }


    .cta {

        padding:
            60px 0;

    }


    .cta-content {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .contact-card {

        padding:
            24px 20px;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap:
            30px;

    }


    .floating-whatsapp,
    .floating-call {

        right:
            12px;

        min-width:
            90px;

        height:
            42px;

    }

}