/* =====================================================
   VARIABLES
===================================================== */

:root {

    --primary: #f7c800;
    --primary-light: #ffe16b;
    --primary-dark: #d9ac00;

    --orange: #c97a16;

    --black: #101010;
    --black-soft: #191919;

    --text: #1d1d1f;
    --text-soft: #666666;

    --white: #ffffff;

    --gray-50: #fafafa;
    --gray-100: #f4f4f4;
    --gray-200: #e8e8e8;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;

    --shadow-sm:
        0 10px 30px rgba(0, 0, 0, 0.06);

    --shadow-md:
        0 20px 50px rgba(0, 0, 0, 0.10);

    --shadow-yellow:
        0 20px 50px rgba(247, 200, 0, 0.22);

    --container: 1300px;

    --transition:
        0.3s ease;
}



/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--white);

    overflow-x: hidden;

}


body.menu-open {

    overflow: hidden;

}


img {

    max-width: 100%;

    display: block;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input,
textarea,
select {

    font: inherit;

}


button {

    border: none;

    cursor: pointer;

}


section {

    scroll-margin-top: 90px;

}



/* =====================================================
   CONTAINER
===================================================== */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


.section {

    padding: 110px 0;

}



/* =====================================================
   TITULOS
===================================================== */

.section-tag {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    font-size: 0.8rem;

    font-weight: 800;

    letter-spacing: 2px;

    color: var(--orange);

}


.section-tag::before {

    content: "";

    width: 30px;

    height: 3px;

    background: var(--primary);

}


.section-tag.light {

    color: var(--primary);

}


.section-title {

    font-family: "Poppins", sans-serif;

    font-size:
        clamp(2rem, 4vw, 3.4rem);

    line-height: 1.12;

}


.section-title span {

    color: var(--orange);

}



/* =====================================================
   BOTONES
===================================================== */

.btn {

    min-height: 54px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 24px;

    border-radius: 999px;

    font-weight: 700;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);

}


.btn:hover {

    transform: translateY(-3px);

}


.btn svg {

    width: 19px;

    height: 19px;

}


.btn-primary {

    background: var(--primary);

    color: var(--black);

    box-shadow: var(--shadow-yellow);

}


.btn-primary:hover {

    background: var(--primary-light);

}


.btn-outline {

    border: 1px solid var(--gray-200);

    background: var(--white);

}


.btn-outline:hover {

    box-shadow: var(--shadow-sm);

}


.btn-dark {

    background: var(--black);

    color: var(--white);

}


.btn-dark:hover {

    background: #292929;

}


.btn.full {

    width: 100%;

}



/* =====================================================
   HEADER
===================================================== */

.header {

    position: fixed;

    inset:
        0
        0
        auto
        0;

    height: 86px;

    z-index: 1000;

    transition:
        background var(--transition),
        box-shadow var(--transition),
        height var(--transition);

}


.header.scrolled {

    height: 74px;

    background:
        rgba(255, 255, 255, 0.94);

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.05);

}


.nav-container {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo img {

    width: 190px;

    max-height: 64px;

    object-fit: contain;

}


.nav {

    display: flex;

    align-items: center;

    gap: 28px;

}


.nav-link {

    position: relative;

    font-size: 0.92rem;

    font-weight: 600;

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 3px;

    border-radius: 10px;

    background: var(--primary);

    transition:
        width var(--transition);

}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}


.client-access {

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        12px
        18px;

    border-radius: 999px;

    background: var(--black);

    color: var(--white);

    font-weight: 600;

    transition: var(--transition);

}


.client-access:hover {

    background: var(--primary);

    color: var(--black);

}


.client-access svg {

    width: 18px;

}


.menu-toggle {

    display: none;

    background: transparent;

    color: var(--black);

}



/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        140px
        0
        95px;

    background:

        radial-gradient(
            circle at 82% 30%,
            rgba(247, 200, 0, 0.16),
            transparent 30%
        ),

        linear-gradient(
            180deg,
            #ffffff,
            #fafafa
        );

}



/* ELEMENTO DECORATIVO */

.hero::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    right: -220px;

    top: 90px;

    border:
        50px solid
        rgba(247, 200, 0, 0.13);

    transform:
        rotate(45deg);

    border-radius: 70px;

}



/* GRID HERO */

.hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(430px, 0.95fr);

    align-items: center;

    gap: 80px;

}



/* BADGE SUPERIOR */

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding:
        7px
        14px
        7px
        8px;

    margin-bottom: 30px;

    border:
        1px solid
        var(--gray-200);

    border-radius: 999px;

    background: var(--gray-100);

    font-size: 0.85rem;

    font-weight: 700;

}


.eyebrow-icon {

    width: 34px;

    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--primary);

    color: var(--black);

}


.eyebrow-icon svg {

    width: 18px;

}



/* TITULO HERO */

.hero h1 {

    max-width: 720px;

    font-family: "Poppins", sans-serif;

    font-size:
        clamp(3rem, 5vw, 5rem);

    line-height: 0.98;

    letter-spacing: -3.5px;

}


.hero h1 .highlight {

    position: relative;

    display: inline-block;

}


.hero h1 .highlight::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 5px;

    height: 13px;

    background: var(--primary);

    z-index: -1;

    transform: rotate(-1deg);

}



/* DESCRIPCIÓN */

.hero-description {

    max-width: 650px;

    margin-top: 30px;

    color: var(--text-soft);

    line-height: 1.8;

    font-size: 1.08rem;

}



/* ACCIONES */

.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;

}



/* INDICADORES HERO */

.hero-trust {

    display: flex;

    gap: 35px;

    margin-top: 45px;

}


.hero-trust div {

    display: flex;

    flex-direction: column;

    padding-left: 12px;

    border-left:
        3px solid
        var(--primary);

}


.hero-trust strong {

    font-size: 0.95rem;

}


.hero-trust span {

    margin-top: 3px;

    color: var(--text-soft);

    font-size: 0.78rem;

}



/* =====================================================
   HERO IMAGEN
===================================================== */

.hero-image-wrapper {

    position: relative;

    width: 100%;

    min-height: 560px;

    display: flex;

    align-items: center;

    justify-content: center;

}



/* CONTENEDOR */

.hero-image-frame {

    position: relative;

    width: 100%;

    max-width: 510px;

    aspect-ratio: 1 / 1;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: visible;

}



/* FOTO */

.hero-main-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center center;

    border-radius: 30px;

    box-shadow:
        0 30px 70px
        rgba(0, 0, 0, 0.16);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;

}


.hero-image-frame:hover
.hero-main-image {

    transform:
        translateY(-3px)
        scale(1.015);

    box-shadow:
        0 35px 85px
        rgba(0, 0, 0, 0.20);

}



/* BORDE AMARILLO */

.hero-image-frame::before {

    content: "";

    position: absolute;

    width: 100%;

    height: 100%;

    top: 20px;

    right: -20px;

    border:
        3px solid
        var(--primary);

    border-radius: 30px;

    z-index: -1;

}



/* CUADRADO DECORATIVO */

.hero-image-frame::after {

    content: "";

    position: absolute;

    width: 95px;

    height: 95px;

    top: -28px;

    right: -28px;

    background: var(--primary);

    border-radius: 25px;

    transform: rotate(15deg);

    z-index: -2;

    opacity: 0.8;

}



/* BADGES FOTO */

.hero-image-badge {

    position: absolute;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 11px;

    padding:
        13px
        17px;

    border:
        1px solid
        rgba(0, 0, 0, 0.07);

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(10px);

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.12);

    animation:
        heroFloat
        4s
        ease-in-out
        infinite;

}


.hero-image-badge > svg {

    width: 38px;

    height: 38px;

    padding: 9px;

    border-radius: 12px;

    background: var(--primary);

    color: var(--black);

}


.hero-image-badge div {

    display: flex;

    flex-direction: column;

}


.hero-image-badge strong {

    color: var(--black);

    font-size: 0.86rem;

}


.hero-image-badge span {

    margin-top: 2px;

    color: var(--text-soft);

    font-size: 0.72rem;

}


.hero-badge-top {

    top: 35px;

    right: -50px;

}


.hero-badge-bottom {

    bottom: 40px;

    left: -50px;

    animation-delay: -2s;

}


@keyframes heroFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-9px);

    }

}



/* SCROLL INDICATOR */

.scroll-indicator {

    position: absolute;

    bottom: 20px;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    color: var(--text-soft);

    font-size: 0.7rem;

    animation:
        scrollBounce
        2s
        infinite;

}


.scroll-indicator svg {

    width: 18px;

}


@keyframes scrollBounce {

    0%,
    100% {

        transform:
            translate(-50%, 0);

    }

    50% {

        transform:
            translate(-50%, 8px);

    }

}



/* =====================================================
   NOSOTROS
===================================================== */

.about-grid {

    display: grid;

    grid-template-columns:
        0.75fr
        1.25fr;

    gap: 100px;

    align-items: center;

}


.about-visual {

    display: flex;

    justify-content: center;

}


.about-box {

    position: relative;

    min-height: 390px;

    width: 100%;

    padding: 50px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            var(--primary),
            #f6b900
        );

}


.about-box::before {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    top: -100px;

    right: -100px;

    border:
        45px solid
        rgba(0, 0, 0, 0.08);

    border-radius: 55px;

    transform: rotate(45deg);

}


.about-number {

    position: absolute;

    top: 25px;

    left: 35px;

    color:
        rgba(0, 0, 0, 0.08);

    font-family:
        "Poppins",
        sans-serif;

    font-size: 5rem;

    font-weight: 900;

}


.about-box > svg {

    width: 65px;

    height: 65px;

    margin-bottom: 25px;

}


.about-box h3 {

    font-family:
        "Poppins",
        sans-serif;

    font-size: 1.7rem;

}


.about-box p {

    margin-top: 8px;

    line-height: 1.6;

}


.about-content p {

    margin-top: 20px;

    color: var(--text-soft);

    line-height: 1.8;

}


.about-features {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    margin-top: 35px;

}


.about-features div {

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 600;

}


.about-features svg {

    width: 25px;

    height: 25px;

    padding: 5px;

    border-radius: 50%;

    background: var(--primary);

}



/* =====================================================
   OBJETIVO
===================================================== */

.objective-section {

    padding: 110px 0;

    background: var(--black);

    color: var(--white);

}


.objective-header {

    max-width: 800px;

}


.objective-header h2 {

    font-family:
        "Poppins",
        sans-serif;

    font-size:
        clamp(2.2rem, 5vw, 4rem);

    line-height: 1.1;

}


.objective-header h2 span {

    color: var(--primary);

}


.objective-header p {

    max-width: 700px;

    margin-top: 22px;

    color: #b9b9b9;

    line-height: 1.8;

}


.objective-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

    margin-top: 65px;

}


.objective-card {

    position: relative;

    min-height: 320px;

    padding: 40px;

    border:
        1px solid
        #292929;

    border-radius: 25px;

    background: var(--black-soft);

    transition: var(--transition);

}


.objective-card:hover {

    transform:
        translateY(-8px);

    border-color:
        var(--primary);

}


.objective-number {

    color: #555;

    font-weight: 700;

}


.objective-card svg {

    display: block;

    width: 45px;

    height: 45px;

    margin-top: 55px;

    color: var(--primary);

}


.objective-card h3 {

    margin-top: 25px;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 1.5rem;

}


.objective-card p {

    margin-top: 10px;

    color: #aaa;

    line-height: 1.6;

}



/* =====================================================
   SERVICIOS
===================================================== */

.services-section {

    background: var(--gray-50);

}


.section-heading {

    display: grid;

    grid-template-columns:
        1.4fr
        0.6fr;

    gap: 60px;

    align-items: end;

    margin-bottom: 55px;

}


.section-heading > p {

    color: var(--text-soft);

    line-height: 1.7;

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.service-card {

    position: relative;

    min-height: 260px;

    padding: 32px;

    overflow: hidden;

    border:
        1px solid
        var(--gray-200);

    border-radius: var(--radius-md);

    background: var(--white);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);

}


.service-card::before {

    content: "";

    position: absolute;

    width: 120px;

    height: 120px;

    right: -80px;

    bottom: -80px;

    border-radius: 30px;

    background: var(--primary);

    transform: rotate(45deg);

    transition: var(--transition);

}


.service-card:hover {

    transform:
        translateY(-8px);

    box-shadow: var(--shadow-md);

    border-color: var(--primary);

}


.service-card:hover::before {

    right: -55px;

    bottom: -55px;

}


.service-icon {

    width: 55px;

    height: 55px;

    display: grid;

    place-items: center;

    border-radius: 17px;

    background: var(--primary);

    color: var(--black);

}


.service-icon svg {

    width: 27px;

}


.service-card h3 {

    margin-top: 28px;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 1.2rem;

}


.service-card p {

    margin-top: 12px;

    color: var(--text-soft);

    line-height: 1.7;

    font-size: 0.92rem;

}


.more-services {

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.8s ease,
        opacity 0.5s ease,
        margin 0.5s ease;

}


.more-services.open {

    max-height: 2000px;

    margin-top: 22px;

    opacity: 1;

}


.services-button-container {

    display: flex;

    justify-content: center;

    margin-top: 45px;

}



/* =====================================================
   METODOLOGÍA
===================================================== */

.process-section {

    padding: 110px 0;

    background: var(--white);

}


.process-heading {

    max-width: 760px;

    margin: 0 auto;

    text-align: center;

}


.process-grid {

    display: flex;

    align-items: center;

    margin-top: 70px;

}


.process-item {

    flex: 1;

    text-align: center;

}


.process-item span {

    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    margin: auto;

    border-radius: 50%;

    background: var(--primary);

    color: var(--black);

    font-family:
        "Poppins",
        sans-serif;

    font-weight: 800;

    box-shadow:
        var(--shadow-yellow);

}


.process-item h3 {

    margin-top: 22px;

    font-family:
        "Poppins",
        sans-serif;

}


.process-item p {

    max-width: 200px;

    margin:
        8px
        auto
        0;

    color: var(--text-soft);

    line-height: 1.6;

    font-size: 0.88rem;

}


.process-line {

    flex: 0.5;

    height: 2px;

    background:

        repeating-linear-gradient(
            90deg,
            var(--primary),
            var(--primary) 8px,
            transparent 8px,
            transparent 15px
        );

}



/* =====================================================
   CLIENTES
===================================================== */

.clients-section {

    overflow: hidden;

    background: var(--gray-50);

}


.clients-header {

    max-width: 750px;

    margin: auto;

    text-align: center;

}


.clients-header p {

    margin-top: 20px;

    color: var(--text-soft);

    line-height: 1.7;

}



/* SLIDER */

.clients-slider {

    position: relative;

    overflow: hidden;

    margin-top: 60px;

}


.clients-slider::before,
.clients-slider::after {

    content: "";

    position: absolute;

    z-index: 2;

    top: 0;

    bottom: 0;

    width: 120px;

    pointer-events: none;

}


.clients-slider::before {

    left: 0;

    background:

        linear-gradient(
            90deg,
            var(--gray-50),
            transparent
        );

}


.clients-slider::after {

    right: 0;

    background:

        linear-gradient(
            -90deg,
            var(--gray-50),
            transparent
        );

}



/* TRACK */

.clients-track {

    display: flex;

    align-items: center;

    width: max-content;

    padding: 15px 0;

    animation:
        scrollClients
        24s
        linear
        infinite;

}


.clients-track:hover {

    animation-play-state: paused;

}



/* CLIENTE */

.client-name {

    width: 250px;

    min-width: 250px;

    height: 125px;

    margin: 0 12px;

    padding:
        20px
        30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        var(--gray-200);

    border-radius: 18px;

    background: var(--white);

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.04);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

}


.client-name:hover {

    transform:
        translateY(-6px);

    border-color: var(--primary);

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.08);

}



/* LOGO CLIENTE */

.client-name img {

    width: 100%;

    height: 75px;

    object-fit: contain;

    filter: none;

    opacity: 1;

    transition:
        transform 0.3s ease;

}


.client-name:hover img {

    transform:
        scale(1.05);

}



/* ANIMACIÓN */

@keyframes scrollClients {

    from {

        transform:
            translateX(0);

    }

    to {

        transform:
            translateX(-50%);

    }

}



/* =====================================================
   CONTACTO
===================================================== */

.contact-section {

    padding: 110px 0;

    background: var(--black);

    color: var(--white);

}


.contact-grid {

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 90px;

    align-items: center;

}


.contact-content h2 {

    font-family:
        "Poppins",
        sans-serif;

    font-size:
        clamp(2.3rem, 5vw, 4rem);

    line-height: 1.1;

}


.contact-content h2 span {

    color: var(--primary);

}


.contact-content > p {

    margin-top: 24px;

    color: #bdbdbd;

    line-height: 1.8;

}


.contact-info {

    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-top: 40px;

}


.contact-info a {

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 15px;

}


.contact-info a > svg {

    width: 43px;

    height: 43px;

    padding: 11px;

    border-radius: 13px;

    background: var(--primary);

    color: var(--black);

}


.contact-info div {

    display: flex;

    flex-direction: column;

}


.contact-info small {

    color: #888;

}


.contact-info span {

    margin-top: 3px;

    font-weight: 600;

}



/* =====================================================
   FORMULARIO
===================================================== */

.contact-form {

    padding: 40px;

    border-radius: 28px;

    background: var(--white);

    color: var(--black);

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.25);

}


.form-header {

    margin-bottom: 30px;

}


.form-header h3 {

    font-family:
        "Poppins",
        sans-serif;

    font-size: 1.6rem;

}


.form-header p {

    margin-top: 5px;

    color: var(--text-soft);

}


.form-row {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

}


.form-group {

    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-bottom: 18px;

}


.form-group label {

    font-size: 0.85rem;

    font-weight: 700;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding:
        14px
        15px;

    outline: none;

    border:
        1px solid
        var(--gray-200);

    border-radius: 12px;

    background: var(--gray-50);

    transition: var(--transition);

}


.form-group textarea {

    resize: vertical;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--primary);

    background: var(--white);

    box-shadow:
        0 0 0 4px
        rgba(247, 200, 0, 0.12);

}



/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding:
        75px
        0
        20px;

    background: #080808;

    color: var(--white);

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr;

    gap: 60px;

}


.footer-brand img {

    max-width: 210px;

    padding: 10px;

    border-radius: 10px;

    background: var(--white);

}


.footer-brand p {

    margin-top: 18px;

    color: #888;

}


.footer-links {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.footer-links h4 {

    margin-bottom: 5px;

}


.footer-links a {

    color: #999;

    font-size: 0.9rem;

    transition: var(--transition);

}


.footer-links a:hover {

    color: var(--primary);

}


.footer-bottom {

    margin-top: 60px;

    padding-top: 20px;

    border-top:
        1px solid
        #222;

    text-align: center;

    color: #666;

    font-size: 0.82rem;

}



/* DESARROLLADORES */

.developer-credit {

    margin-top: 11px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 7px;

    color: #666;

    font-size: 0.79rem;

}


.developer-credit a {

    position: relative;

    color: #aaa;

    font-weight: 600;

    transition:
        color 0.3s ease,
        transform 0.3s ease;

}


.developer-credit a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -3px;

    width: 0;

    height: 1px;

    background: var(--primary);

    transition:
        width 0.3s ease;

}


.developer-credit a:hover {

    color: var(--primary);

    transform:
        translateY(-1px);

}


.developer-credit a:hover::after {

    width: 100%;

}


.developer-credit .separator {

    color: var(--primary);

}



/* =====================================================
   WHATSAPP FLOTANTE
===================================================== */

.whatsapp-floating {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 60px;

    height: 60px;

    z-index: 900;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #25d366;

    color: #ffffff;

    box-shadow:
        0 12px 35px
        rgba(37, 211, 102, 0.35);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.whatsapp-floating:hover {

    transform:
        scale(1.08)
        translateY(-4px);

    box-shadow:
        0 18px 45px
        rgba(37, 211, 102, 0.45);

}


.whatsapp-floating svg {

    width: 32px;

    height: 32px;

    display: block;

}



/* =====================================================
   ANIMACIONES SCROLL
===================================================== */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {


    .nav {

        gap: 17px;

    }


    .nav-link {

        font-size: 0.82rem;

    }


    .client-access {

        padding:
            10px
            14px;

        font-size: 0.82rem;

    }


    .hero-grid {

        grid-template-columns:
            1fr
            0.9fr;

        gap: 45px;

    }


    .hero-image-wrapper {

        min-height: 480px;

    }


    .hero-image-frame {

        max-width: 430px;

    }


    .hero-badge-top {

        right: -20px;

    }


    .hero-badge-bottom {

        left: -20px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {


    .header {

        background:
            rgba(255, 255, 255, 0.96);

        backdrop-filter:
            blur(15px);

    }


    .logo img {

        width: 155px;

    }


    .menu-toggle {

        display: grid;

        place-items: center;

    }


    .menu-toggle svg {

        width: 29px;

        height: 29px;

    }



    /* MENU */

    .nav {

        position: fixed;

        top: 74px;

        right: -100%;

        width:
            min(85%, 350px);

        height:
            calc(100vh - 74px);

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 10px;

        padding: 30px;

        background: var(--white);

        box-shadow:
            -20px 30px 50px
            rgba(0, 0, 0, 0.08);

        transition:
            right 0.35s ease;

    }


    .nav.open {

        right: 0;

    }


    .nav-link {

        padding: 15px 0;

        border-bottom:
            1px solid
            var(--gray-100);

        font-size: 1rem;

    }


    .nav-link::after {

        display: none;

    }


    .client-access {

        justify-content: center;

        margin-top: 15px;

        padding: 15px;

    }



    /* HERO */

    .hero {

        min-height: auto;

        padding:
            130px
            0
            80px;

    }


    .hero-grid {

        grid-template-columns: 1fr;

        gap: 65px;

    }


    .hero h1 {

        letter-spacing: -2px;

    }


    .hero-image-wrapper {

        min-height: auto;

        margin-top: 10px;

        padding:
            0
            25px
            40px;

    }


    .hero-image-frame {

        max-width: 520px;

    }


    .hero-badge-top {

        top: 25px;

        right: -5px;

    }


    .hero-badge-bottom {

        bottom: 25px;

        left: -5px;

    }


    .scroll-indicator {

        display: none;

    }



    /* NOSOTROS */

    .about-grid {

        display: flex;

        flex-direction: column-reverse;

        gap: 55px;

    }



    /* CONTACTO */

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }



    /* OBJETIVO */

    .objective-grid {

        grid-template-columns: 1fr;

    }



    /* TITULOS */

    .section-heading {

        grid-template-columns: 1fr;

        gap: 20px;

    }



    /* PROCESO */

    .process-grid {

        flex-direction: column;

        gap: 20px;

    }


    .process-line {

        flex: none;

        width: 2px;

        height: 50px;

        background:

            repeating-linear-gradient(
                180deg,
                var(--primary),
                var(--primary) 8px,
                transparent 8px,
                transparent 15px
            );

    }



    /* FOOTER */

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

}



/* =====================================================
   MOBILE PEQUEÑO
===================================================== */

@media (max-width: 600px) {


    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }


    .section,
    .objective-section,
    .process-section,
    .contact-section {

        padding: 80px 0;

    }



    /* HERO */

    .hero h1 {

        font-size:
            clamp(
                2.7rem,
                13vw,
                4rem
            );

    }


    .hero-actions {

        flex-direction: column;

    }


    .hero-actions .btn {

        width: 100%;

    }


    .hero-trust {

        flex-direction: column;

        gap: 16px;

    }


    .hero-image-wrapper {

        padding:
            0
            10px
            30px;

    }


    .hero-image-frame {

        max-width: 100%;

    }


    .hero-main-image {

        border-radius: 22px;

    }


    .hero-image-frame::before {

        top: 12px;

        right: -12px;

        border-radius: 22px;

    }


    .hero-image-frame::after {

        width: 70px;

        height: 70px;

        top: -18px;

        right: -10px;

    }


    .hero-image-badge {

        padding:
            9px
            11px;

    }


    .hero-image-badge > svg {

        width: 32px;

        height: 32px;

    }


    .hero-badge-top {

        top: 20px;

        right: -5px;

    }


    .hero-badge-bottom {

        bottom: 20px;

        left: -5px;

    }



    /* NOSOTROS */

    .about-box {

        min-height: 320px;

        padding: 35px;

    }


    .about-features {

        grid-template-columns: 1fr;

    }



    /* SERVICIOS */

    .services-grid {

        grid-template-columns: 1fr;

    }



    /* FORM */

    .form-row {

        grid-template-columns: 1fr;

    }


    .contact-form {

        padding: 25px;

    }



    /* CLIENTES */

    .client-name {

        width: 210px;

        min-width: 210px;

        height: 110px;

        padding: 18px 25px;

    }


    .client-name img {

        height: 65px;

    }


    .clients-slider::before,
    .clients-slider::after {

        width: 50px;

    }



    /* WHATSAPP */

    .whatsapp-floating {

        width: 56px;

        height: 56px;

        right: 18px;

        bottom: 18px;

    }


    .whatsapp-floating svg {

        width: 29px;

        height: 29px;

    }


    .developer-credit {

        flex-direction: row;

        line-height: 1.6;

    }

}