/* ==================================================
   PANTALLAS GRANDES
================================================== */

@media (min-width: 1500px) {

    .navbar {
        padding-right: 8%;
        padding-left: 8%;
    }

    .hero,
    .container {
        width: min(1380px, 86%);
    }

    .hero {
        grid-template-columns: minmax(0, 1.25fr) minmax(400px, 0.75fr);
        gap: 100px;
    }

    .hero__description {
        max-width: 800px;
        font-size: 1.15rem;
    }

    .hero__card {
        max-width: 500px;
        padding: 50px;
    }
}


/* ==================================================
   NOTEBOOKS Y PANTALLAS MEDIANAS
================================================== */

@media (max-width: 1100px) {

    .navbar__menu {
        gap: 20px;
    }

    .navbar__menu a {
        font-size: 0.88rem;
    }

    .hero {
        grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 5vw, 4.3rem);
    }

    .hero__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero__features article:last-child {
        grid-column: 1 / -1;
    }

        .hero__browser {
            max-width: 470px;
        }
}


/* ==================================================
   TABLETS
================================================== */

@media (max-width: 900px) {

    html {
        scroll-padding-top: 76px;
    }

    .navbar {
        min-height: 72px;
        padding: 11px 5%;
    }

    .navbar__logo {
        font-size: 1.45rem;
    }

    .navbar__logo span {
        font-size: 0.58rem;
        letter-spacing: 1.5px;
    }

    .navbar__button {
        position: relative;
        z-index: 1002;

        display: block;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 1001;

        width: min(340px, 85%);
        height: 100vh;
        padding: 110px 35px 40px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 8px;

        background-color: rgba(255, 255, 255, 0.98);
        border-left: 1px solid var(--color-borde);
        box-shadow: -15px 0 40px rgba(47, 27, 77, 0.16);

        transition: right 0.35s ease;
    }

    .navbar__menu.active {
        right: 0;
    }

    .navbar__menu li {
        width: 100%;
    }

    .navbar__menu a {
        width: 100%;
        padding: 15px 5px;

        display: block;

        color: var(--color-morado-oscuro);
        border-bottom: 1px solid rgba(111, 66, 193, 0.1);

        font-size: 1rem;
    }

    .navbar__menu a::after {
        bottom: 8px;
    }

    .navbar__button.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar__button.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar__button.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        min-height: auto;
        padding-top: 135px;
        padding-bottom: 90px;

        grid-template-columns: 1fr;
        gap: 65px;
    }

    .hero__content {
        text-align: center;
    }

    .hero__tag {
        justify-content: center;
    }

    .hero h1 {
        max-width: 780px;
        margin: 0 auto;
    }

    .hero__description {
        max-width: 700px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__features {
        max-width: 720px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero__features article {
        text-align: left;
    }

        .hero__visual {
            width: min(100%, 560px);
            margin: 0 auto;
        }
    
        .hero__browser {
            width: 100%;
            transform: rotate(0deg);
        }

    .section {
        padding: 80px 0;
    }

                .about__container {
                    grid-template-columns: 1fr;
                    gap: 55px;
                }
        
                .about__content {
                    text-align: center;
                }
        
                .about__content>p:not(.section__tag) {
                    margin-right: auto;
                    margin-left: auto;
                }
        
                .about__actions {
                    justify-content: center;
                }
        
                .about__details {
                    width: min(100%, 680px);
                    margin: 0 auto;
                }
}


/* ==================================================
   CELULARES GRANDES
================================================== */

@media (max-width: 650px) {

    .container,
    .hero {
        width: min(92%, 560px);
    }

    .navbar {
        padding-right: 4%;
        padding-left: 4%;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 70px;
        gap: 55px;
    }

    .hero__tag {
        padding: 8px 13px;

        font-size: 0.72rem;
        letter-spacing: 0.7px;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 11vw, 3.4rem);
        letter-spacing: -1px;
    }

    .hero__description {
        margin-top: 22px;
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero__buttons {
        margin-top: 28px;

        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero__features {
        margin-top: 35px;

        grid-template-columns: 1fr;
    }

    .hero__features article:last-child {
        grid-column: auto;
    }

    .hero__features article {
        padding: 17px;
    }

        .hero__visual::before {
            top: -20px;
            right: -8px;
    
            width: 120px;
            height: 120px;
        }
    
        .hero__visual::after {
            bottom: -20px;
            left: -5px;
    
            width: 95px;
            height: 95px;
        }
    
        .hero__browser {
            border-radius: 22px;
        }
    
        .hero__browser-top {
            padding: 14px;
            gap: 10px;
        }
    
        .hero__browser-bar {
            min-height: 34px;
            font-size: 0.72rem;
        }
    
        .hero__browser-body {
            grid-template-columns: 1fr;
            min-height: 455px;
        }
        .hero__browser-body.has-sidebar {
            grid-template-columns: 1fr;
        }
        
        .hero__browser-body.has-sidebar .hero__browser-sidebar {
            display: flex;
        }
    
        .hero__browser-sidebar {
            padding: 10px 12px;
        
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
        }
    
        .hero__sidebar-chip {
            width: auto;
            min-height: 34px;
            padding: 7px 10px;
    
            font-size: 0.62rem;
            line-height: 1;
        }
    
        .hero__browser-screen {
            padding: 20px 18px 16px;
        }
    
        .hero-slide {
            inset: 20px 18px 54px 18px;
        }
    
        .hero-slide h3 {
            font-size: 1.25rem;
        }
    
        .hero-slide p {
            font-size: 0.82rem;
        }
    
        .hero-slide__layout {
            min-height: 105px;
        }
    
        .hero-slide__cards span {
            height: 72px;
        }
    
        .hero__browser-footer {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

    .section {
        padding: 65px 0;
    }

    .section .container {
        min-height: 150px;
        padding: 30px 24px;
        border-radius: 22px;
    }

    .section__title {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }

    .footer {
        padding: 26px 7%;
        line-height: 1.7;
    }

                .about__content {
                    text-align: left;
                }
        
                .about__actions {
                    flex-direction: column;
                }
        
                .about__card {
                    padding: 21px 18px;
        
                    grid-template-columns: 45px 1fr;
                    gap: 14px;
                }
        
                .about__number {
                    width: 45px;
                    height: 45px;
        
                    border-radius: 13px;
                }
        
                .about__card:hover {
                    transform: translateY(-4px);
                }
        
                .about__technologies {
                    padding: 22px 18px;
                }
        
                .about__tags {
                    gap: 7px;
                }
        
                .about__tags span {
                    padding: 7px 10px;
                    font-size: 0.72rem;
                }
                .navbar__logo {
                    gap: 8px;
                }
                    
                .navbar__seal {
                    width: 45px;
                    height: 45px;
                }
                    
                .navbar__brand-text strong {
                    font-size: 1.18rem;
                }
                    
                .navbar__brand-text small {
                    margin-top: 4px;
    
                    font-size: 0.51rem;
                    letter-spacing: 1.2px;
                }
}


/* ==================================================
   CELULARES PEQUEÑOS
================================================== */

@media (max-width: 400px) {

    .navbar__logo {
        font-size: 1.28rem;
    }

    .navbar__logo span {
        font-size: 0.51rem;
        letter-spacing: 1px;
    }

    .navbar__button {
        width: 43px;
        height: 43px;
    }

    .navbar__menu {
        width: 88%;
        padding-right: 25px;
        padding-left: 25px;
    }

    .hero {
        padding-top: 112px;
    }

    .hero__tag {
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero__description {
        font-size: 0.94rem;
    }

    .hero__card {
        padding: 28px 21px;
    }

    .hero__card h2 {
        font-size: 1.7rem;
    }

    .section .container {
        padding: 26px 20px;
    }
    .hero__browser-bar {
        font-size: 0.65rem;
    }
        
    .hero-slide h3 {
        font-size: 1.1rem;
    }
        
    .hero-slide__badges span {
        font-size: 0.63rem;
    }
    .hero-slide__tag {
        max-width: 220px;
        font-size: 0.54rem;
        white-space: normal;
    }
    .navbar__seal {
        width: 40px;
        height: 40px;
    }
        
    .navbar__brand-text strong {
        font-size: 1.06rem;
    }
        
    .navbar__brand-text small {
        font-size: 0.46rem;
        letter-spacing: 0.9px;
    }
}


/* ==================================================
   PANTALLAS BAJAS EN ALTURA
================================================== */

@media (max-height: 650px) and (min-width: 901px) {

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 65px;
    }
    .hero-slide__tag {
        padding: 5px 9px;
        font-size: 0.58rem;
        letter-spacing: 0.4px;
    }
        
    .hero-slide {
        inset: 28px 18px 76px;
    }
}


/* ==================================================
   ACCESIBILIDAD: REDUCIR MOVIMIENTO
================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ==================================================
   RESPONSIVE: SERVICIOS
================================================== */

@media (max-width: 1100px) {

    .services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card {
        min-height: 340px;
    }
}


@media (max-width: 900px) {

    .services__header {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .services__introduction {
        max-width: 680px;
    }

    .services__audience {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services__audience h3 {
        max-width: 650px;
    }

    .services__message {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 650px) {

    .services__header {
        margin-bottom: 38px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
        padding: 27px 23px;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }

    .services__audience {
        margin-top: 50px;
        padding: 32px 24px;
        border-radius: 22px;
    }

    .services__audience-list {
        gap: 8px;
    }

    .services__audience-list span {
        padding: 8px 12px;
        font-size: 0.74rem;
    }

    .services__message {
        padding: 25px 22px;
    }

    .services__message .button {
        width: 100%;
    }
}
/* ==================================================
   RESPONSIVE: PORTAFOLIO
================================================== */

@media (max-width: 1100px) {

    .project-card--published {
        grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    }
}


@media (max-width: 900px) {

    .portfolio__header {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .portfolio__introduction {
        max-width: 680px;
    }

    .project-card--published {
        grid-template-columns: 1fr;
    }

    .project-card--published .project-card__preview {
        min-height: 270px;
    }

    .portfolio__notice {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .portfolio__notice h3 {
        max-width: 680px;
    }
}


@media (max-width: 700px) {

    .portfolio__grid {
        grid-template-columns: 1fr;
    }

    .project-card--published {
        grid-column: auto;
    }
}


@media (max-width: 650px) {

    .portfolio__header {
        margin-bottom: 38px;
    }

    .project-card {
        border-radius: 22px;
    }

    .project-card:hover {
        transform: translateY(-5px);
    }

    .project-card__preview,
    .project-card--published .project-card__preview {
        min-height: 210px;
        padding: 25px 22px;
    }

    .project-card__preview::before {
        top: 22px;
        right: 20px;

        font-size: 4rem;
    }

    .project-card__content {
        padding: 25px 22px;
    }

    .project-card h3 {
        font-size: 1.3rem;
    }

    .project-card__actions .button {
        width: 100%;
    }

    .portfolio__notice {
        margin-top: 28px;
        padding: 30px 24px;
        border-radius: 22px;
    }
}
/* ==================================================
   RESPONSIVE: CÓMO TRABAJO
================================================== */

@media (max-width: 1100px) {

    .process__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 900px) {

    .process__header {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .process__introduction {
        max-width: 680px;
    }

    .process__support {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .process__support h3 {
        max-width: 680px;
    }
}


@media (max-width: 650px) {

    .process__header {
        margin-bottom: 38px;
    }

    .process__steps {
        grid-template-columns: 1fr;
    }

    .process-step {
        min-height: auto;
        padding: 27px 23px;
    }

    .process-step:hover {
        transform: translateY(-5px);
    }

    .process-step__number {
        width: 52px;
        height: 52px;
        margin-bottom: 26px;

        border-radius: 16px;
    }

    .process__support {
        margin-top: 28px;
        padding: 31px 24px;
        border-radius: 22px;
    }
}
/* ==================================================
   RESPONSIVE: CONTACTO Y FOOTER
================================================== */

@media (max-width: 1100px) {

    .contact__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-card:last-child {
        grid-column: 1 / -1;
        min-height: 310px;
    }

    .footer__content {
        grid-template-columns: 1fr auto;
    }

    .footer__content>p {
        grid-column: 1 / -1;

        justify-self: start;

        max-width: none;
        text-align: left;
    }
}


@media (max-width: 900px) {

    .contact__header {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact__introduction {
        max-width: 680px;
    }

    .contact__cta {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact__cta h3 {
        max-width: 680px;
    }
}


@media (max-width: 700px) {

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact-card:last-child {
        grid-column: auto;
    }

    .footer__content {
        grid-template-columns: 1fr;
        justify-items: center;

        text-align: center;
    }

    .footer__content>div:first-child {
        align-items: center;
    }

    .footer__links {
        flex-wrap: wrap;
    }

    .footer__content>p {
        grid-column: auto;
        justify-self: center;

        text-align: center;
    }
}


@media (max-width: 650px) {

    .contact__header {
        margin-bottom: 38px;
    }

    .contact-card,
    .contact-card:last-child {
        min-height: auto;
        padding: 28px 23px;

        border-radius: 22px;
    }

    .contact-card:hover {
        transform: translateY(-5px);
    }

    .contact-card__label {
        margin-bottom: 24px;
    }

    .contact__cta {
        margin-top: 28px;
        padding: 32px 24px;

        border-radius: 22px;
    }

    .contact__cta .button {
        width: 100%;
    }

    .footer {
        padding: 40px 7%;
    }

    .footer__links {
        gap: 17px;
    }
}
/* ==================================================
   AJUSTE FINAL DEL CARRUSEL EN CELULAR
================================================== */

@media (max-width: 650px) {

    .hero__browser-screen {
        min-height: 550px;
        overflow: hidden;
    }

    .hero-slide {
        inset: 22px 18px 72px;

        display: flex;
        flex-direction: column;
    }

    .hero-slide h3 {
        width: 100%;
        max-width: 100%;

        margin-bottom: 9px;

        font-size: clamp(1.08rem, 5.2vw, 1.28rem);
        line-height: 1.15;
    }

    .hero-slide p {
        width: 100%;
        max-width: 100%;

        margin-bottom: 12px;

        font-size: 0.8rem;
        line-height: 1.5;
    }

    .hero-slide__tag {
        flex-shrink: 0;
        margin-bottom: 10px;
    }

    .hero-slide__badges {
        margin-bottom: 13px;
        gap: 6px;
    }

    .hero-slide__badges span {
        padding: 6px 9px;
        font-size: 0.64rem;
    }

    .hero-slide__layout {
        min-height: 95px;
        margin-top: auto;
        padding: 11px;
    }

    .hero__browser-body.has-sidebar .hero-slide h3 {
        font-size: clamp(1rem, 4.7vw, 1.18rem);
    }

    .hero__browser-body.has-sidebar .hero-slide p {
        font-size: 0.77rem;
    }

}
@media (max-width: 400px) {

    .hero__browser-screen {
        min-height: 565px;
    }

    .hero-slide {
        inset: 20px 15px 70px;
    }

    .hero-slide h3 {
        font-size: 1.03rem;
    }

    .hero-slide p {
        font-size: 0.76rem;
        line-height: 1.45;
    }

    .hero-slide__layout {
        min-height: 88px;
    }
}
/* ==================================================
   CORRECCIÓN DEFINITIVA DEL CARRUSEL EN CELULAR
================================================== */

@media (max-width: 650px) {

    .hero__browser-screen {
        min-height: 0;
        height: auto;
        padding: 20px 18px 15px;

        grid-template-rows: auto auto;
        align-content: start;
    }
    .hero-slide {
        position: static !important;
        inset: auto !important;
    
        width: 100%;
        min-height: 0;
        height: auto;
    
        justify-content: flex-start;
        align-self: start;
    }

    .hero-slide h3 {
        width: 100%;
        max-width: 100%;

        font-size: clamp(1.08rem, 5vw, 1.25rem);
        line-height: 1.16;
    }

    .hero-slide p {
        width: 100%;
        max-width: 100%;

        font-size: 0.79rem;
        line-height: 1.48;
    }

    .hero-slide__tag {
        margin-bottom: 9px;
    }

    .hero-slide__badges {
        margin-bottom: 12px;
    }

    .hero-slide__layout {
        min-height: 95px;
        margin-top: 12px;
    }

    .hero__browser-footer {
        position: static !important;
        inset: auto !important;

        min-height: 30px;
        margin-top: 10px;
    }
    .hero__browser-body,
    .hero__browser-body.has-sidebar {
        min-height: 0;
        height: auto;
    }
}


@media (max-width: 400px) {

    .hero__browser-screen {
            min-height: 0;
            height: auto;
            padding-right: 15px;
            padding-left: 15px;
        }

    .hero-slide h3 {
        font-size: 1.04rem;
    }

    .hero-slide p {
        font-size: 0.76rem;
    }

    .hero-slide__layout {
        min-height: 88px;
    }
}
/* ==================================================
   RESPONSIVE: FRANJA DE TECNOLOGÍAS
================================================== */

@media (max-width: 650px) {

    .technology-strip {
        padding: 14px 0;
    }

    .technology-strip::before,
    .technology-strip::after {
        width: 45px;
    }

    .technology-strip__track {
        animation-duration: 22s;
    }

    .technology-strip__group {
        gap: 10px;
        padding-right: 10px;
    }

    .technology-strip__group span {
        padding: 8px 13px 8px 30px;

        font-size: 0.7rem;
    }

    .technology-strip__group span::before {
        left: 13px;

        width: 7px;
        height: 7px;
    }
}
/* ==================================================
   RESPONSIVE: MODAL DE PROYECTOS
================================================== */

@media (max-width: 800px) {

    .project-modal {
        padding: 16px;
    }

    .project-modal__dialog {
        grid-template-columns: 1fr;
    }

    .project-modal__visual {
        min-height: 270px;
        padding: 35px 28px;
    }

    .project-modal__mockup {
        max-width: 430px;
    }

    .project-modal__content {
        padding: 38px 28px 30px;
    }
}


@media (max-width: 500px) {

    .project-modal {
        padding: 10px;
    }

    .project-modal__dialog {
        max-height: 94vh;
        border-radius: 22px;
    }

    .project-modal__visual {
        min-height: 230px;
        padding: 30px 22px;
    }

    .project-modal__close {
        top: 12px;
        right: 12px;

        width: 40px;
        height: 40px;
    }

    .project-modal__content {
        padding: 30px 22px 24px;
        gap: 20px;
    }

    .project-modal__actions {
        flex-direction: column;
    }

    .project-modal__actions .button {
        width: 100%;
    }
}
/* ==================================================
   RESPONSIVE: GALERÍA DEL PROYECTO
================================================== */

@media (max-width: 800px) {

    .project-gallery__viewport {
        height: 290px;
    }
}


@media (max-width: 500px) {

    .project-gallery {
        margin-top: 18px;
    }

    .project-gallery__viewport {
        height: 230px;
        border-radius: 17px;
    }

    .project-gallery__button {
        width: 38px;
        height: 38px;

        font-size: 1.5rem;
    }

    .project-gallery__button--previous {
        left: 8px;
    }

    .project-gallery__button--next {
        right: 8px;
    }

    .project-gallery__caption {
        min-height: 34px;

        font-size: 0.72rem;
    }

    .project-gallery__counter {
        right: 10px;
        bottom: 10px;

        font-size: 0.65rem;
    }
}
/* ==================================================
   RESPONSIVE: PÁGINAS INTERIORES
================================================== */

@media (max-width: 900px) {

    .page-hero {
        padding-top: 135px;
    }

    .page-hero__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .page-hero__content {
        text-align: center;
    }

    .page-hero__content>p:not(.section__tag) {
        margin-right: auto;
        margin-left: auto;
    }

    .page-hero__actions {
        justify-content: center;
    }

    .page-hero__visual {
        width: min(100%, 550px);
        margin: 0 auto;
    }
}


@media (max-width: 650px) {

    .page-hero {
        padding: 120px 0 70px;
    }

    .page-hero__content {
        text-align: left;
    }

    .page-hero__content h1 {
        font-size: clamp(2.3rem, 11vw, 3.3rem);
        letter-spacing: -1px;
    }

    .page-hero__content>p:not(.section__tag) {
        font-size: 0.96rem;
    }

    .page-hero__actions {
        flex-direction: column;
    }

    .page-hero__visual {
        min-height: 360px;
    }

    .page-hero__visual::before {
        width: 270px;
        height: 270px;
    }

    .page-hero__seal {
        width: min(260px, 76%);
    }

    .page-hero__floating-tag {
        padding: 8px 12px;

        font-size: 0.66rem;
    }

    .page-hero__floating-tag--one {
        top: 35px;
        left: 0;
    }

    .page-hero__floating-tag--two {
        top: 125px;
        right: 0;
    }

    .page-hero__floating-tag--three {
        bottom: 40px;
        left: 5px;
    }
}


@media (max-width: 400px) {

    .page-hero__visual {
        min-height: 330px;
    }

    .page-hero__visual::before {
        width: 235px;
        height: 235px;
    }

    .page-hero__seal {
        width: 220px;
    }

    .page-hero__floating-tag {
        font-size: 0.6rem;
    }
}
/* ==================================================
   RESPONSIVE: RESUMEN DE SERVICIOS
================================================== */

@media (max-width: 1000px) {

    .services-preview__layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .services-preview__content {
        text-align: center;
    }

    .services-preview__description {
        margin-right: auto;
        margin-left: auto;
    }

    .services-preview__actions {
        justify-content: center;
    }

    .services-preview__features {
        width: min(100%, 720px);
        margin-right: auto;
        margin-left: auto;

        text-align: left;
    }

    .services-preview__visual {
        width: min(100%, 570px);
        margin: 0 auto;
    }
}


@media (max-width: 650px) {

    .services-preview__content {
        text-align: left;
    }

    .services-preview__actions {
        flex-direction: column;
    }

    .services-preview__features article {
        padding: 15px;

        grid-template-columns: 42px 1fr;
        gap: 12px;
    }

    .services-preview__features article>span {
        width: 42px;
        height: 42px;
    }

    .services-preview__visual {
        min-height: 440px;
    }

    .services-preview__visual::before {
        width: 275px;
        height: 275px;
    }

    .services-preview__window {
        border-radius: 22px;
        transform: rotate(0deg);
    }

    .services-preview__window-body {
        padding: 19px;
    }

    .services-preview__mini-card {
        padding: 17px;
    }

    .services-preview__floating--one {
        top: 20px;
        right: 0;
    }

    .services-preview__floating--two {
        bottom: 15px;
        left: 0;
    }
}


@media (max-width: 400px) {

    .services-preview__visual {
        min-height: 415px;
    }

    .services-preview__window-top small {
        max-width: 190px;
        text-align: right;
    }

    .services-preview__floating {
        padding: 8px 11px;
        font-size: 0.62rem;
    }
}
/* ==================================================
   RESPONSIVE: CÓMO TRABAJO
================================================== */

@media (max-width: 1050px) {

    .work-principles__grid {
        grid-template-columns: 1fr;
    }

    .work-commitment__layout {
        grid-template-columns: 1fr;
    }

    .work-commitment__content {
        max-width: 800px;
    }

    .work-final__content {
        grid-template-columns: 1fr;
    }

    .work-final__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}


@media (max-width: 900px) {

    .work-hero-visual {
        width: min(100%, 560px);
        margin: 0 auto;
    }

    .work-process__header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-responsibilities__grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 700px) {

    .work-hero-visual {
        min-height: 410px;
    }

    .work-hero-visual::before {
        width: 330px;
        height: 330px;
    }

    .work-hero-visual::after {
        width: 245px;
        height: 245px;
    }

    .work-hero-visual__center {
        width: 175px;
        height: 175px;
    }

    .work-hero-visual__center img {
        width: 112px;
        height: 112px;
    }

    .work-orbit {
        min-width: 110px;
        padding: 10px 12px;
    }

    .work-orbit--one {
        top: 25px;
        left: 0;
    }

    .work-orbit--two {
        top: 90px;
        right: 0;
    }

    .work-orbit--three {
        right: 0;
        bottom: 65px;
    }

    .work-orbit--four {
        bottom: 20px;
        left: 0;
    }

    .work-principles {
        margin-top: -20px;
    }

    .work-step {
        grid-template-columns: 58px 1fr;
        gap: 15px;
    }

    .work-timeline::before {
        left: 28px;
    }

    .work-step__marker {
        width: 58px;
        height: 58px;
    }

    .work-step__marker span {
        width: 43px;
        height: 43px;

        font-size: 0.7rem;
    }

    .work-step__content {
        padding: 23px 20px;
    }

    .work-step__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .work-step h3 {
        font-size: 1.18rem;
        text-align: left;
    }

    .work-step ul {
        grid-template-columns: 1fr;
    }

    .work-commitment__cards {
        grid-template-columns: 1fr;
    }

    .work-role-card {
        padding: 27px 23px;
    }

    .work-final {
        padding: 65px 0;
    }

    .work-final__actions {
        flex-direction: column;
    }
}


@media (max-width: 460px) {

    .work-hero-visual {
        min-height: 365px;
    }

    .work-hero-visual::before {
        width: 275px;
        height: 275px;
    }

    .work-hero-visual::after {
        width: 205px;
        height: 205px;
    }

    .work-hero-visual__center {
        width: 145px;
        height: 145px;
    }

    .work-hero-visual__center img {
        width: 92px;
        height: 92px;
    }

    .work-hero-visual__center span {
        font-size: 0.52rem;
    }

    .work-orbit {
        min-width: 96px;
        padding: 8px 9px;
        gap: 7px;
    }

    .work-orbit__number {
        width: 27px;
        height: 27px;

        font-size: 0.56rem;
    }

    .work-orbit strong {
        font-size: 0.65rem;
    }

    .work-step {
        grid-template-columns: 45px 1fr;
        gap: 10px;
    }

    .work-timeline::before {
        left: 22px;
    }

    .work-step__marker {
        width: 45px;
        height: 45px;
    }

    .work-step__marker span {
        width: 34px;
        height: 34px;

        font-size: 0.6rem;
    }

    .work-step__content {
        padding: 20px 16px;
        border-radius: 19px;
    }

    .work-principle {
        padding: 20px;

        grid-template-columns: 42px 1fr;
    }

    .work-principle__icon {
        width: 42px;
        height: 42px;
    }
}
/* ==================================================
   RESPONSIVE: CONTACTO
================================================== */

@media (max-width: 1050px) {

    .contact-form-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-introduction {
        max-width: 800px;
    }

    .contact-trust__layout {
        grid-template-columns: 1fr;
    }

    .contact-trust__content {
        max-width: 800px;
    }

    .contact-final__content {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 900px) {

    .contact-hero-visual {
        width: min(100%, 570px);
        margin: 0 auto;
    }

    .contact-channels__grid {
        grid-template-columns: 1fr;
    }

    .contact-channel {
        min-height: auto;
    }
}


@media (max-width: 700px) {

    .contact-hero-visual {
        min-height: 420px;
    }

    .contact-hero-visual::before {
        width: 310px;
        height: 310px;
    }

    .contact-hero-visual__seal {
        width: 190px;
        height: 190px;
    }

    .contact-hero-visual__seal img {
        width: 145px;
        height: 145px;
    }

    .contact-message {
        width: min(245px, 70%);
        padding: 11px 13px;

        grid-template-columns: 34px 1fr;
    }

    .contact-message>span {
        width: 34px;
        height: 34px;
    }

    .contact-message--one {
        top: 25px;
        left: 0;
    }

    .contact-message--two {
        top: 165px;
        right: 0;
    }

    .contact-message--three {
        bottom: 25px;
        left: 0;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .contact-trust__cards {
        grid-template-columns: 1fr;
    }

    .contact-final {
        padding: 65px 0;
    }
}


@media (max-width: 460px) {

    .contact-hero-visual {
        min-height: 375px;
    }

    .contact-hero-visual::before {
        width: 255px;
        height: 255px;
    }

    .contact-hero-visual__seal {
        width: 155px;
        height: 155px;
    }

    .contact-hero-visual__seal img {
        width: 118px;
        height: 118px;
    }

    .contact-message {
        width: 215px;
        max-width: 72%;

        grid-template-columns: 30px 1fr;
        gap: 8px;
    }

    .contact-message>span {
        width: 30px;
        height: 30px;

        font-size: 0.55rem;
    }

    .contact-message strong {
        font-size: 0.68rem;
    }

    .contact-message small {
        font-size: 0.56rem;
    }

    .contact-channel {
        padding: 22px;
    }

    .contact-form-card {
        border-radius: 21px;
    }

    .contact-form {
        padding: 21px 16px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 13px;
    }

    .contact-form-guide article,
    .contact-form-security {
        grid-template-columns: 38px 1fr;
    }

    .contact-form-guide article>span,
    .contact-form-security__icon {
        width: 38px;
        height: 38px;
    }
}
/* ==================================================
   RESPONSIVE: RESUMEN SOBRE MÍ
================================================== */

@media (max-width: 1000px) {

    .home-about-preview__layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .home-about-preview__visual {
        width: min(100%, 560px);
        margin: 0 auto;
    }

    .home-about-preview__content {
        text-align: center;
    }

    .home-about-preview__qualities {
        width: min(100%, 720px);
        margin-right: auto;
        margin-left: auto;

        text-align: left;
    }

    .home-about-preview__actions {
        justify-content: center;
    }
}


@media (max-width: 650px) {

    .home-about-preview__visual {
        min-height: 400px;
    }

    .home-about-preview__visual::before {
        width: 285px;
        height: 285px;
    }

    .home-about-preview__seal {
        width: 215px;
        height: 215px;
    }

    .home-about-preview__seal img {
        width: 170px;
        height: 170px;
    }

    .home-about-preview__badge {
        padding: 8px 12px;

        font-size: 0.63rem;
    }

    .home-about-preview__badge--one {
        top: 35px;
        left: 0;
    }

    .home-about-preview__badge--two {
        top: 160px;
        right: 0;
    }

    .home-about-preview__badge--three {
        bottom: 35px;
        left: 0;
    }

    .home-about-preview__content {
        text-align: left;
    }

    .home-about-preview__actions {
        flex-direction: column;
    }
}


@media (max-width: 430px) {

    .home-about-preview__visual {
        min-height: 350px;
    }

    .home-about-preview__visual::before {
        width: 235px;
        height: 235px;
    }

    .home-about-preview__seal {
        width: 175px;
        height: 175px;
    }

    .home-about-preview__seal img {
        width: 138px;
        height: 138px;
    }

    .home-about-preview__badge {
        font-size: 0.56rem;
    }

    .home-about-preview__qualities article {
        padding: 14px;

        grid-template-columns: 39px 1fr;
        gap: 11px;
    }

    .home-about-preview__qualities article>span {
        width: 39px;
        height: 39px;
    }
}
/* ==================================================
   RESUMEN SOBRE MÍ EN EL INICIO
================================================== */

.home-about-preview {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 12% 20%,
            rgba(201, 175, 232, 0.22),
            transparent 26%),
        radial-gradient(circle at 90% 85%,
            rgba(53, 221, 136, 0.16),
            transparent 24%),
        #fdfcff;
}

.home-about-preview__layout {
    display: grid;
    grid-template-columns: minmax(350px, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 80px;
}


/* Visual */

.home-about-preview__visual {
    position: relative;

    min-height: 480px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.home-about-preview__visual::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background:
        linear-gradient(145deg,
            rgba(111, 66, 193, 0.17),
            rgba(53, 221, 136, 0.19));

    border: 1px solid rgba(111, 66, 193, 0.12);
    border-radius: 47% 53% 58% 42% / 43% 48% 52% 57%;

    animation: homeAboutShape 8s ease-in-out infinite;
}

.home-about-preview__seal {
    position: relative;
    z-index: 2;

    width: 270px;
    height: 270px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(111, 66, 193, 0.14);
    border-radius: 50%;
    box-shadow:
        0 30px 60px rgba(47, 27, 77, 0.2),
        inset 0 0 35px rgba(255, 255, 255, 0.78);

    backdrop-filter: blur(12px);
}

.home-about-preview__seal img {
    width: 220px;
    height: 220px;

    object-fit: contain;

    filter:
        drop-shadow(0 20px 24px rgba(47, 27, 77, 0.22));
}


/* Etiquetas flotantes */

.home-about-preview__badge {
    position: absolute;
    z-index: 3;

    padding: 10px 15px;

    color: var(--color-morado-oscuro);
    background-color: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(111, 66, 193, 0.13);
    border-radius: 50px;
    box-shadow: var(--sombra-suave);

    font-size: 0.7rem;
    font-weight: 800;

    animation: homeAboutFloat 4.5s ease-in-out infinite;
}

.home-about-preview__badge::before {
    content: "";

    width: 8px;
    height: 8px;
    margin-right: 8px;

    display: inline-block;

    background-color: var(--color-verde);
    border-radius: 50%;
}

.home-about-preview__badge--one {
    top: 55px;
    left: 0;
}

.home-about-preview__badge--two {
    top: 190px;
    right: -15px;

    animation-delay: 1.1s;
}

.home-about-preview__badge--three {
    bottom: 55px;
    left: 20px;

    animation-delay: 2s;
}


/* Contenido */

.home-about-preview__content>p:not(.section__tag) {
    margin-top: 22px;

    color: var(--color-texto-claro);
    line-height: 1.8;
}

.home-about-preview__qualities {
    margin-top: 30px;

    display: grid;
    gap: 12px;
}

.home-about-preview__qualities article {
    padding: 16px 18px;

    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 14px;

    background-color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(111, 66, 193, 0.11);
    border-radius: 16px;

    transition:
        transform var(--transicion),
        box-shadow var(--transicion);
}

.home-about-preview__qualities article:hover {
    transform: translateX(7px);
    box-shadow: var(--sombra-suave);
}

.home-about-preview__qualities article>span {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-morado-oscuro);
    background-color: var(--color-verde);
    border-radius: 13px;

    font-size: 0.65rem;
    font-weight: 900;
}

.home-about-preview__qualities h3 {
    margin-bottom: 4px;

    color: var(--color-morado-oscuro);
    font-size: 0.9rem;
}

.home-about-preview__qualities p {
    color: var(--color-texto-claro);
    font-size: 0.75rem;
    line-height: 1.5;
}

.home-about-preview__actions {
    margin-top: 29px;

    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}


/* Animaciones */

@keyframes homeAboutShape {

    0%,
    100% {
        border-radius: 47% 53% 58% 42% / 43% 48% 52% 57%;
        transform: rotate(0deg);
    }

    50% {
        border-radius: 57% 43% 42% 58% / 55% 43% 57% 45%;
        transform: rotate(5deg);
    }
}

@keyframes homeAboutFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

/* ==================================================
   RESPONSIVE: EXPERIENCIA DIFERENCIADA Y CREDENCIALES
================================================== */

@media (max-width: 1050px) {
    .home-stage__grid { grid-template-columns: 1fr; }
    .home-stage-card { min-height: auto; }
    .solution-guide__layout,
    .home-trust__layout,
    .home-faq__layout,
    .professional-proof__layout { grid-template-columns: 1fr; }
    .professional-proof__cards { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .home-contact-banner__content { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
    .home-stage__header { grid-template-columns: 1fr; gap: 18px; }
    .home-trust__grid { grid-template-columns: 1fr; }
    .professional-proof__cards { grid-template-columns: 1fr; }
    .professional-proof-card { min-height: auto; }
}

@media (max-width: 650px) {
    .solution-guide__result-body { padding: 27px 21px; }
    .solution-guide__result-top { align-items:flex-start; flex-direction:column; }
    .solution-guide__option { padding:14px; grid-template-columns:34px 1fr; }
    .solution-guide__option span { width:34px; height:34px; }
    .home-stage-card { padding:23px 20px; }
    .home-faq__question { padding:18px; }
    .home-faq__answer { padding:0 18px 18px; }
    .home-contact-banner { padding:65px 0; }
    .home-contact-banner .button { width:100%; justify-content:center; }
}
/* ==================================================
   RESPONSIVE: CREDENCIAL DEL NAVBAR
================================================== */

@media (max-width: 1180px) {

    .navbar__identity {
        gap: 9px;
    }

    .navbar__credential {
        padding-right: 5px;
    }

    .navbar__credential>span {
        display: none;
    }
}


@media (max-width: 650px) {

    .navbar__identity {
        gap: 6px;
    }

    .navbar__credential {
        padding: 3px;
        border-radius: 50%;
    }

    .navbar__credential img {
        width: 39px;
        height: 39px;
    }
}


@media (max-width: 400px) {

    .navbar__credential img {
        width: 35px;
        height: 35px;
    }
}
/* ==================================================
   RESPONSIVE: CREDENCIAL TALENTO DIGITAL
================================================== */

@media (max-width: 950px) {

    .professional-credential__layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .professional-credential__visual {
        min-height: 390px;
    }

    .professional-credential__content {
        max-width: 820px;
    }
}


@media (max-width: 650px) {

    .professional-credential__visual {
        min-height: 330px;
    }

    .professional-credential__glow {
        width: 285px;
        height: 285px;
    }

    .professional-credential__visual img {
        width: min(310px, 86%);
    }
}


@media (max-width: 430px) {

    .professional-credential__visual {
        min-height: 275px;
    }

    .professional-credential__glow {
        width: 230px;
        height: 230px;
    }

    .professional-credential__verification {
        grid-template-columns: 39px 1fr;
        padding: 14px;
    }

    .professional-credential__check {
        width: 39px;
        height: 39px;
    }

    .professional-credential .button {
        width: 100%;
        justify-content: center;
    }
}
/* ==================================================
   RESPONSIVE: FOTO PROFESIONAL SOBRE MÍ
================================================== */

@media (max-width: 1050px) {

    .about-hero-visual--profile {
        width: min(100%, 540px);
        min-height: 590px;
    }

    .about-hero-visual__photo {
        min-height: 570px;
    }

    .about-hero-visual--profile .about-skill-card--web {
        left: 0;
    }

    .about-hero-visual--profile .about-skill-card--java {
        right: 0;
    }

    .about-hero-visual--profile .about-skill-card--admin {
        left: 10px;
    }
}

@media (max-width: 700px) {

    .about-hero-visual--profile {
        width: 100%;
        min-height: 520px;
    }

    .about-hero-visual--profile::before {
        width: 360px;
        height: 360px;
    }

    .about-hero-visual--profile::after {
        width: 420px;
        height: 420px;
    }

    .about-hero-visual__photo {
        width: min(100%, 470px);
        min-height: 500px;
        border-radius: 30px;
    }

    .about-hero-visual__photo-label {
        right: 22px;
        left: 22px;
        bottom: 22px;
    }

    .about-hero-visual__photo-label strong {
        font-size: 1.45rem;
    }

    .about-hero-visual--profile .about-skill-card {
        width: 195px;
        padding: 13px 15px;
    }

    .about-hero-visual--profile .about-skill-card--web {
        top: 10px;
        left: 6px;
    }

    .about-hero-visual--profile .about-skill-card--java {
        top: 175px;
        right: 6px;
    }

    .about-hero-visual--profile .about-skill-card--admin {
        bottom: 8px;
        left: 6px;
    }
}

@media (max-width: 460px) {

    .about-hero-visual--profile {
        min-height: 430px;
    }

    .about-hero-visual--profile::before {
        width: 280px;
        height: 280px;
    }

    .about-hero-visual--profile::after {
        width: 320px;
        height: 320px;
    }

    .about-hero-visual__photo {
        width: 100%;
        min-height: 390px;
        border-radius: 24px;
    }

    .about-hero-visual__photo img {
        opacity: 0.60;
    }

    .about-hero-visual__photo-label {
        right: 16px;
        left: 16px;
        bottom: 16px;
    }

    .about-hero-visual__photo-label span {
        font-size: 0.50rem;
    }

    .about-hero-visual__photo-label strong {
        font-size: 1.15rem;
    }

    .about-hero-visual__photo-label small {
        font-size: 0.62rem;
    }

    .about-hero-visual--profile .about-skill-card {
        width: 165px;
        padding: 11px 13px;
    }

    .about-hero-visual--profile .about-skill-card strong {
        font-size: 0.72rem;
    }

    .about-hero-visual--profile .about-skill-card small {
        font-size: 0.57rem;
    }

    .about-hero-visual--profile .about-skill-card--web {
        top: 8px;
        left: 4px;
    }

    .about-hero-visual--profile .about-skill-card--java {
        top: 148px;
        right: 4px;
    }

    .about-hero-visual--profile .about-skill-card--admin {
        bottom: 6px;
        left: 4px;
    }
}

