* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-display: swap;
            font-style: normal;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        :root {
            --primary-blue: #2626FF;
            --dark-bg: #0a0a0a;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
        }

@font-face {
    font-family: 'Icons Social Media 8';
    src: url('../fonts/IconsSocialMedia8.woff2') format('woff2'),
        url('../fonts/IconsSocialMedia8.woff') format('woff');
}

@font-face {
    font-family: 'Zalando Sans Expanded Regular';
    src: url('../fonts/ZalandoSansExpanded-Regular.woff2') format('woff2'),
        url('../fonts/ZalandoSansExpanded-Regular.woff') format('woff');
    font-weight: normal;
}

@font-face {
    font-family: 'Zalando Sans Expanded Medium';
    src: url('../fonts/ZalandoSansExpanded-Medium.woff2') format('woff2'),
        url('../fonts/ZalandoSansExpanded-Medium.woff') format('woff');
    font-weight: 500;
}

@font-face {
    font-family: 'Zalando Sans Expanded Black';
    src: url('../fonts/ZalandoSansExpanded-Black.woff2') format('woff2'),
        url('../fonts/ZalandoSansExpanded-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi Regular';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
        url('../fonts/Satoshi-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Satoshi Medium';
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2'),
        url('../fonts/Satoshi-Medium.woff') format('woff');
    font-weight: 500;
}

@font-face {
    font-family: 'Satoshi Bold';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
        url('../fonts/Satoshi-Bold.woff') format('woff');
    font-weight: bold;
}

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: var(--text-white);
            overflow-x: hidden;
        }

        /* HEADER */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 5%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.3rem;
            font-weight: 700;
            color: #000;
            text-decoration: none;
        }
            .logo img{
                max-width: 150px;
            }

        .logo-icon {
            width: 24px;
            height: 24px;
            background: var(--primary-blue);
            border-radius: 4px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #000;
            text-decoration: none;
            font: 1rem/1.2 'Satoshi Bold';
            transition: color 0.3s;
            cursor: pointer;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        .btn-contact {
            background: var(--primary-blue);
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .btn-contact:hover {
            transform: translateY(-2px);
        }

        /* HERO SECTION */
        #inicio {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgb(0 0 0) 0%, rgba(38, 38, 255, 0.3) 100%);
            z-index: 0;
        }

        .hero-content {
            box-sizing: border-box;
            position: relative;
            z-index: 1;
            max-width: 1400px;
            padding: 0;
            width: 100%;
        }

        .box-titulo{
            max-width: 700px;
        }

            .hero-content h1 {
                margin-bottom: 10px;
                font: 4.5rem/1.05 'Zalando Sans Expanded Regular';
            }
                .hero-content h1 strong{
                    display: block;
                    font-family: 'Zalando Sans Expanded Black';
                }
            .box-titulo a{
                border-bottom: 1px solid #fff;
                color: #fff;
                font: 1rem/1.2 'Satoshi Bold';
                padding-bottom: 5px;
                text-decoration: none;
            }
        .box-bajada{
            float: right;
            max-width: 500px;
            padding-top: 150px;
        }
            .box-bajada img{
                display: inline-block;
                margin: 0 10px;
                max-width: 100px;
                vertical-align: top;
            }
            .box-bajada p{
                display: inline-block;
                font-size: 1rem;
                max-width: 375px;
                line-height: 1.6;
                vertical-align: top;
            }
                .box-bajada p b{
                    display: block;
                    font-weight: 600;
                }

        .hero-content h1 strong {
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            line-height: 1.6;
        }

        /* CONOCENOS SECTION */
        #conocenos {
            background: var(--dark-bg);
            padding: 8rem 5%;
        }

        .section-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .team-image {
            position: relative;
        }

        .team-image img {
            width: 100%;
            border-radius: 20px;
            position: relative;
            z-index: 1;
        }

        .blue-circle {
            position: absolute;
            width: 200px;
            height: 200px;
            background: var(--primary-blue);
            border-radius: 50%;
            left: -50px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 0;
        }

        .team-text h2 {
            font: 2.8rem/1.1 'Zalando Sans Expanded Medium';
            margin-bottom: 2rem;
        }

        .team-text p {
            color: var(--text-gray);
            font: 1rem/1.8 'Satoshi Medium';
            margin-bottom: 1.5rem;
        }

            .team-text p span{
                color: #fff;
                font-family: 'Satoshi Bold';
            }

        .team-text h6 {
            color: #2627ff;
            font: .9rem/1.1 'Satoshi Bold';
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        /* METODOLOGIA SECTION */
        #metodologia {
            background: #fff;
            padding: 8rem 0rem 9rem;
            color: #000;
        }

        .metodologia-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .metodologia-header p {
            font: .9rem/1.1 'Satoshi Bold';
            color: var(--primary-blue);
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .metodologia-header p.bajada{
            font: 1.1rem/1.8 'Satoshi Medium';
            letter-spacing: normal;
        }

        .metodologia-header h2 {
            font: 2.8rem/1.1 'Zalando Sans Expanded Medium';
            margin-bottom: 1rem;
        }

        .metodologia-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .metodologia-card {
            text-align: center;
        }

        .metodologia-card img {
            max-width: 130px;
            margin: 0 auto 1.5rem;
        }

        .metodologia-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.2;
        }

        .metodologia-card h3 {
            font: 1.4rem/1.2 'Satoshi Medium';
            margin-bottom: 1rem;
        }

        .metodologia-card p {
            color: #666;
            font: 1.1rem/1.6 'Satoshi Medium';
        }

        /* PORTAFOLIO SECTION */
        #portafolio {            
            padding: 0;
            padding-bottom: 5px;
            padding-top: 4rem;
            overflow: hidden;
        }

        .portafolio-header {
            background: #fff;
            text-align: center;
            padding-bottom: 4rem;
            padding-top: 4rem;
        }

        .portafolio-header p {
            font: .9rem / 1.1 'Satoshi Bold';
            text-transform: uppercase;
            color: var(--primary-blue);
            margin-bottom: 1rem;
                letter-spacing: 1.5px;
        }

        .portafolio-header h2 {
            color: rgba(18, 18, 24, 1);
            font: 2.8rem/1.1 'Zalando Sans Expanded Medium';
        }

        p.bajada-portafolio {
            color: rgba(18, 18, 24, 1);
            font: 1.1rem/1.7 'Satoshi Medium';
            text-transform: none;
        }

        .section-content-portafolio{
            background-color: #000;
            margin: 0 auto;
            max-width: inherit;
        }

        .slider-container {            
            position: relative;
            height: 600px;
            margin: 0 auto;
        }

        .slider-wrapper {
            position: relative;
            height: 100%;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            transform: translateX(100%);
            opacity: 0;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
            z-index: 1;
        }

        .slide.active {
            transform: translateX(0);
            opacity: 1;
            z-index: 3;
        }

        .slide.previous {
            transform: translateX(0);
            opacity: 1;
            z-index: 2;
        }

        .slide.exiting {
            transform: translateX(-100%);
            opacity: 0;
            z-index: 2;
        }

        .slide-text{
            transform: translate(0, 25%);
            padding-left: 25%;
        }

        .slide-text h3 {
            font: 1.2rem/1.3 'Satoshi Medium';
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .slide-text p {
            border-bottom: 1px solid rgba(18, 18, 24, 1);
            padding-bottom: 30px;
            color: var(--text-gray);
            font: 1.1rem/1.5 'Satoshi Regular';
            margin-bottom: 1.5rem;
        }

        .slide-text ul {
            list-style: none;
            padding-left: 0;
        }

        .slide-text li {
            color: #fff;
            line-height: 1.8;
            margin-bottom: 0.3rem;
            padding-left: 1.5rem;
            position: relative;
        }
            .slide-text li:nth-child(1) {
                padding: 0;
            }
            .slide-text li:nth-child(1):before {
                display: none;
            }

        .slide-text li:before {
            content: "●";
            position: absolute;
            left: 0;
            color: #fff;
            font-size: 0.5rem;
            top: 25%;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .portfolio-bullets {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 3rem;
        }

        .portfolio-bullet,
        .bullet {
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background: #c2c2c2;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            padding: 0;
        }

        .portfolio-bullet.active,
        .bullet.active {
            background: #000;
            transform: scale(1.2);
        }

        /* PROYECTOS SECTION */
        #proyectos {
            background: #fff;
            padding: 8rem 0;
            color: #000;
        }

        #proyectos .section-content {
            max-width: inherit;
            margin: 0 auto;
        }

        .proyectos-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .proyectos-header p {
            font: .9rem / 1.1 'Satoshi Bold';
            text-transform: uppercase;
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 1.5px;
        }

        .proyectos-header h2 {
            color: rgba(18, 18, 24, 1);
            font: 2.8rem / 1.1 'Zalando Sans Expanded Medium';
            margin-bottom: 1rem;
        }

        p.bajada-proyectos {
            color: rgba(18, 18, 24, 1);
            font: 1.1rem / 1.7 'Satoshi Medium';
            text-transform: none;
        }

        .proyectos-scroll-container {
            position: relative;
            /*max-width: 1400px;*/
            margin: 0 auto;
        }

        .proyectos-wrapper {
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .proyectos-wrapper::-webkit-scrollbar {
            display: none;
        }

        .proyectos-track {
            display: flex;
            gap: 2rem;
            padding: 1rem 0;
            padding-left: 5%;
        }

        .proyecto-card {
            flex: 0 0 430px;
            cursor: pointer;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .proyecto-card:hover {
            /*transform: translateY(-10px);*/
        }

        .proyecto-image {
            border-radius: 10px;
            width: 100%;
            height: 470px;
            overflow: hidden;
        }

        .proyecto-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .proyecto-info {
            padding: 1.5rem 0;
        }

        .proyecto-tag {
            display: inline-block;
            background: #D0D4FF;
            color: #000;
            padding: 0.4rem 1rem;
            border-radius: 5px;
            font: .9rem / 1.2 'Satoshi Medium';
            margin-bottom: 1rem;
        }

        .proyecto-info h3 {
            color: #000;
            font: 1.5rem / 1.3 'Satoshi Medium';
            margin-bottom: 0.8rem;
        }

        .proyecto-reto {
            font-size: 0.9rem;
            color: #000;
            line-height: 1.4;
        }

        .scroll-bullets {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .bullet {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }

        .bullet.active {
            /*background: var(--primary-blue);
            transform: scale(1.3);*/
        }

        /* PROJECT DETAIL VIEW */
        .project-detail {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            z-index: 2000;
            overflow-y: auto;
        }

        .project-detail.active {
            display: block;
        }

        .project-detail-header {
            padding: 5rem 5% 3rem;            
        }

        .close-detail {
            position: fixed;
            top: 100px;
            right: 5%;
            width: 40px;
            height: 40px;
            background: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 100;
        }

        .project-detail-content {
            border-bottom: 1px solid #c2c2c2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 5%;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 4rem;
            color: #000;
        }

        .project-sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }

        .project-sidebar h1 {
            font: 1.5rem / 1.5 'Satoshi Medium';
            margin-bottom: 1.5rem;
        }

        .project-main {
            padding-top: 0;
        }

        .project-main h3 {
            font: 1.2rem / 1.5 'Satoshi Medium';
            margin: 2rem 0 1rem;
        }

            .project-main h3 strong {
                font-family: 'Satoshi Bold';
            }

        .project-main img {
            width: 100%;
            border-radius: 15px;
            margin: 2rem 0;
        }

        .project-main p {
            line-height: 1.8;
            color: #333;
            margin-bottom: 1.5rem;
        }

        /* RELATED PROJECTS */
        .related-projects {           
            padding: 6rem 5%;
        }

        .related-projects h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #000;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1400px;
        }

        /* CTA SECTION */
        #contactanos {
            padding: 4rem 0;
        }

        .cta-content {
            box-sizing: border-box;
            max-width: 90%;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--primary-blue);
            padding: 0 0 0 5%;
        }

        .cta-text h2 {
            font: 2.5rem / 1.1 'Zalando Sans Expanded Medium';
            margin-bottom: 1rem;
        }

        .cta-text p {
            font: 1.2rem / 1.3 'Satoshi Medium';
        }

        .cta-content img{
            max-width: 300px;
            margin-right: -12%;
        }

        .cta-content video{
            border-radius: 150px;
            max-width: 300px;
            margin-right: -10%;
            height: 275px;
            width: 275px;
            object-fit: cover;
        }

        .btn-cta {
            background: white;
            color: #000;
            padding: 1rem 1.5rem;
            border-radius: 30px;
            border: none;
            font: 1rem / 1.3 'Satoshi Bold';
            cursor: pointer;
            transition: transform 0.2s;
            margin-top: 25px;
        }
            .btn-cta a{
                color: #000;
                text-decoration: none;
            }

        .btn-cta:hover {
            transform: scale(1.05);
        }

        /* FOOTER */
        footer {
            padding: 3rem 5%;
        }

        .footer-content {
            max-width: 1350px;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.2rem;
            font-weight: 700;
        }

            .footer-logo img{
                max-width: 140px;
            }

        .footer-text {
            color: #000;
            font: .9rem/1.3 'Satoshi Medium';
            margin-top: 5px;
        }

        .box-redes-footer {
            display: flex;
            flex-direction: column;
            align-items: end;
            gap: 1rem;
        }
            .box-redes-footer p{
                color: #000;
                font-size: 0.85rem;
            }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: #000;
            font: 1rem/1.1 'Icons Social Media 8';
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .social-icon:hover {
            background: var(--primary-blue);
        }

        /* MOBILE MENU */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #000;
        }

        .nav-links.mobile-open {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            gap: 1.5rem;
        }

        .nav-links.mobile-open .btn-contact {
            width: 100%;
        }

        @media (max-width: 768px){

            .hero-content{
                height: 70vh;
                padding: 0 5%;
                position: relative;
            }
                .box-bajada{
                    bottom: 0;
                    position: absolute;                    
                    right: 0;
                }
            .metodologia-grid{
                padding: 0 5%;
            }
            #contactanos .cta-content{
                padding: 0;
                max-width: 85%;
            }
                .cta-text{
                    /*order: 2;*/
                    padding-left: 20px;
                }
                .cta-content video{
                    margin-right: 0;
                }
            .footer-logo img{
                max-width: 160px;
                display: block;
                margin: 0 auto;
            }
            .box-redes-footer{
                align-items: center;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .proyecto-card {
                flex: 0 0 300px;
            }

            .footer-content {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }

            #contactanos .cta-content video{
                margin-right: -17%;
            }

        }


        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .hero-content h1 {
                font-size: 3rem;
            }

            .team-section {
                grid-template-columns: 1fr 1fr;
            }

            .slide {
                display: flex;
                flex-direction: column;
                gap: 0;
                align-items: stretch;
            }

            .slide-image {
                order: 1;
                width: 100%;
                height: 50vh;
                min-height: 400px;
            }

            .slide-text {
                order: 2;
                transform: none;
                padding: 2rem 5%;
                background: #000;
            }

            .hero-content{
                height: 65vh;
            }
                .box-bajada{
                    bottom: 0;
                    position: absolute;                    
                    right: 0;
                }

            .slider-container {
                height: 800px;
            }

            .slider-wrapper {
                height: 800px;
            }

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

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

            .project-sidebar {
                position: relative;
                top: 0;
            }

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

            .cta-content {
                max-width: 88%;
                /*flex-direction: column;
                gap: 2rem;
                text-align: center;*/
            }
                .cta-content video{
                    margin-right: -14%;
                }
        }    
        
        @media (max-width: 640px){
            .hero-content{
                height: 79vh;
                position: relative;
            }
            .hero-content .box-bajada{
                bottom: 0;
                padding: 0 10px;
                position: absolute;
            }
                .hero-content h1 {
                    font-size: 1.8rem;
                }
            #conocenos{
                padding: 8rem 5% 4rem;
            }
            .team-section{
                grid-template-columns: 1fr;
            }
            .team-text{
                text-align: center;
            }
                .team-text h2{
                    font-size: 2rem;
                }
            #metodologia{
                padding: 4rem 0rem 9rem;
            }   
                .metodologia-header h2{
                    font-size: 2rem;
                }
                #metodologia .section-content{
                    padding: 0 10px;
                }
                .metodologia-header p.bajada{
                    line-height: 1.5;
                }
            .portafolio-header{
                padding: 0 10px;
            }
            .portafolio-header h2{
                font-size: 2rem;
            }

            .section-content-portafolio{
                background-color: transparent;
                padding: 0 10px;
            }

            /* Slider de portafolio en mÃƒÂ³vil pequeÃƒÂ±o */
            .slider-container {
                height: 115vh;
            }

            .slider-wrapper {
                border-radius: 20px;
                height: 100%;
            }

            .slide-image {
                height: 300px;
                min-height: 300px;
            }

            .slide-text {
                border-bottom-left-radius: 20px;
                border-bottom-right-radius: 20px;
                padding: 1.5rem 5% 2rem;
            }

            .slide-text h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .slide-text p {
                font-size: 1rem;
                padding-bottom: 20px;
            }

            .slide-text li {
                font-size: 0.9rem;
            }

            #proyectos{
                padding: 8rem 0 11rem;
            }

            #contactanos{
                padding: 0 0 2rem;
                position: relative;
            }
                #contactanos .cta-content{
                    background: transparent;
                    box-sizing: border-box;
                    margin: 0 auto;
                    max-width: 100%;
                    padding: 0 0 40px;      
                }
                .cta-text h2{
                    font-size: 2rem;
                    padding: 0 5px;
                }
                .cta-content video{
                    order: 1;
                    margin: 0;
                    top: -23%;
                    z-index: 1;
                    width: 300px;
                    height: 300px;
                    max-width: inherit;
                    position: absolute;
                    left: 50%;
                    transform: translate(-50%);
                }
                .cta-content .cta-text{
                    order: 2;
                    background: var(--primary-blue);
                    padding: 200px 0 40px;
                    max-width: 100%;
                    text-align: center;
                }
            .footer-logo{
                display: block;
            }
                .footer-logo img {
                    max-width: 160px;
                }
                .footer-text{
                    font-size: 1rem;
                }
            .box-redes-footer{
                align-items: center;
            }
        }

        @media (max-height: 900px) {

            .hero-content{
                padding: 0 5%;
            }
            .box-bajada{
                padding-top: 0;
            }
        }


        /* ARTICLES SECTION */
        #articulos,
        #articulos-detail {
            background: #fff;
            padding: 4rem 5% 6rem;
            color: #000;
        }

        #articulos .section-content,
        #articulos-detail .section-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .articulos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .articulo-card {
            border: 1px solid #e8e8e8;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            background: #fff;
            transition: box-shadow 0.3s;
        }

        .articulo-card:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        .articulo-image {
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .articulo-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .articulo-card:hover .articulo-image img {
            transform: scale(1.05);
        }

        .articulo-info {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .articulo-meta {
            font: 0.75rem/1.2 'Satoshi Bold';
            color: #888;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        .articulo-info h3 {
            font: 1.15rem/1.4 'Satoshi Medium';
            color: #111;
            margin-bottom: 0.8rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .articulo-info p {
            font: 0.95rem/1.6 'Satoshi Regular';
            color: #555;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 1.2rem;
        }

        .articulo-link {
            font: 0.95rem/1.2 'Satoshi Bold';
            color: #111;
            text-decoration: underline;
            text-underline-offset: 3px;
            align-self: flex-start;
            transition: color 0.2s;
        }

        .articulo-link:hover {
            color: var(--primary-blue);
        }

        @media (max-width: 1024px) {
            .articulos-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            #articulos,
            #articulos-detail {
                padding: 3rem 5% 4rem;
            }
            .articulos-grid {
                grid-template-columns: 1fr;
            }
        }

        /* SMOOTH SCROLL */
        html {
            scroll-behavior: smooth;
        }