        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Roboto", sans-serif;
        }

        body {
            background: #fff;
            color: #333;
            line-height: 1.6;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            background: #fff;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        #header img {
            width: 200px;
        }

        nav {
            font-size: 1rem;
        }

        .nav-links {
            display: flex;
            right: 10px;
            gap: 1.3rem;
        }

        .nav-links a {
            display: block;
            padding: .1rem 1rem;
            text-decoration: none;
            color: #333;
            font-weight: 100px;
            border-top: 1px solid transparent;
            border-bottom: 1px solid transparent;
        }


        .nav-links a:hover {
            color: #44BD7D;
            border-top: 1px solid #44BD7D;
            border-bottom: 1px solid #44BD7D;
        }

        .nav-links .contacto {
            display: block;
            padding: .2rem 1rem;
            background-color: #44BD7D;
            color: #fff;
            text-decoration: none;
            font-weight: 100px;
            border-top: 1px solid transparent;
            border-bottom: 1px solid transparent;
        }


        .nav-links .contacto:hover {
            background-color: #2A794F;
            color: #fff;
            border-top: 1px solid #2A794F;
            border-bottom: 1px solid #2A794F;
        }

        .menu-toggle {
            display: none;
            font-size: 2rem;
            cursor: pointer;
        }

        .hero {
            min-height: 70vh;
            position: relative;
        }

        .hero .bg {
            position: absolute;
            display: block;
            min-height: 70vh;
            min-width: 100%;
            background: #eaf9f4;
            clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
        }

        .slider {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            min-height: 70vh;
            padding-left: 10rem;
            padding-right: 10rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .slide img {
            height: auto;
        }

        .content {
            max-width: 50%;
        }

        .content h2 {
            font-weight: 300;
            font-size: 3rem;
            margin-bottom: 10px;
            line-height: 4rem;
        }

        .content p {
            color: #44BD7D;
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .content a {
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            border: 1px solid #1E5739;
            border-radius: .5rem;
            background: #fff;
            cursor: pointer;
            transition: 0.3s;
            width: 12rem;


            & p {
                margin: 0;
                border: 1px solid transparent;
                font-size: 1.1rem;
                margin-right: .5rem;
                color: #1E5739;
            }

            & img {
                padding-top: .1rem;
                border: 1px solid transparent;
            }
        }

        .content a:hover {
            background: #A8E1C2;
            color: #fff;
        }

        .controls {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
        }

        .dot.active {
            background: #60a68a;
        }

        .services {
            position: relative;
        }

        .services h2,
        .clients h2 {
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 300;
            margin: 3rem 0;
            color: #369B65;
        }

        .cards {
            display: grid;
            background: #F5F7FA;
            padding: 4rem 6rem 6rem 6rem;
            grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .card {
            background: #fff;
            padding: 3rem;
            width: 22rem;
            border-radius: 10px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

            & div {
                display: flex;
                justify-content: center;
                width: 100%;
                margin-bottom: 3rem;
            }

            & h3 {
                text-align: center;
                font-weight: 600;
                margin: 0 auto;
                margin-bottom: 2rem;
                width: 80%;
            }

            & p {
                text-align: center;
                margin-bottom: 1rem;
            }
        }

        .services a {
            position: absolute;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            border: 1px solid #1E5739;
            border-radius: .5rem;
            background: #fff;
            cursor: pointer;
            transition: 0.3s;
            width: 13rem;
            bottom: -4rem;
            left: 50%;
            transition: 0.3s;
            transform: translate(-50%, -50%);

            & p {
                margin: 0;
                border: 1px solid transparent;
                font-size: 1.1rem;
                margin-right: .5rem;
                color: #1E5739;
            }

            & img {
                padding-top: .1rem;
                border: 1px solid transparent;
            }
        }

        .services a:hover {
            background: #A8E1C2;
            color: #fff;
        }

        .clients {
            margin: 8rem auto;

            & .logo-slider {
                position: relative;
                overflow: hidden;
                width: 100%;
            }

            & .logo-track {
                display: flex;
                width: calc(250px * 16);
                /* ancho = logoWidth * cantidadLogos */
                animation: scroll 50s linear infinite;
            }

            & .logo {
                flex: 0 0 250px;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 10px;
            }

            & .logo img {
                width: 200px;
                max-height: 80px;
                object-fit: contain;
                filter: grayscale(100%);
                transition: filter 0.3s ease;
            }

            & .logo img:hover {
                filter: grayscale(0%);
            }
        }


        .factory {
            background-color: #F5F7FA;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            padding: 4rem 10%;

            & .text h2 {
                font-size: 3rem;
                margin-bottom: 1rem;
                font-weight: 500;
                color: #07130C;
            }

            & .text h3 {
                font-size: 2rem;
                margin-bottom: 1.5rem;
                font-weight: 300;
                color: #1E5739;
            }

            & .text h4 {
                font-size: 1.5rem;
                line-height: 1.6;
                margin-bottom: 2rem;
                color: #369B65;
                font-weight: 300;
            }

            & .text a {
                position: absolute;
                text-decoration: none;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 1rem 2rem;
                border: 1px solid #1E5739;
                border-radius: .5rem;
                background: #fff;
                cursor: pointer;
                transition: 0.3s;
                width: 13rem;
            }

            & .text a:hover {
                background: #A8E1C2;
            }

            & .images {
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
                align-items: flex-start;
            }

            & .images img {
                max-width: 100%;
                border-radius: 5px;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
                opacity: 0;
                transform: translateY(30px);
                transition: all 0.6s ease-out;
            }

            & .images .img2 {
                align-self: flex-end;
            }

            & .images img.show {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .partners {
            margin: 8rem auto;
            position: relative;
            text-align: center;
            padding: 4rem 2rem;
            background: #fff;
            overflow: hidden;

            & h2 {
                position: relative;
                font-size: 1.8rem;
                font-weight: 400;
                color: #1c5c39;
                margin-bottom: 3rem;
                z-index: 2;
            }

            & .partners-logos {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 4rem;
                flex-wrap: wrap;
                position: relative;
                z-index: 2;
            }

            & .partners-logos img {
                object-fit: contain;
                z-index: 2;
            }

            & .square {
                position: absolute;
                background: #d2f0df;
                opacity: 0.8;
                z-index: 1;
                animation: rotateSquare 12s linear infinite;
            }

            & .square1 {
                width: 200px;
                height: 200px;
                top: 12%;
                left: 3%;
            }

            & .square2 {
                width: 60px;
                height: 60px;
                top: 70%;
                left: 15%;
                animation-duration: 15s;
            }

            & .square3 {
                width: 180px;
                height: 180px;
                top: 35%;
                right: 5%;
                animation-duration: 18s;
            }

            & .square4 {
                width: 60px;
                height: 60px;
                top: 5%;
                right: 25%;
                animation-duration: 14s;
            }

        }

        .multiplatform {
            background-color: #F5F7FA;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            padding: 4rem 10%;

            & .text h2 {
                font-size: 3rem;
                margin-bottom: 1rem;
                font-weight: 500;
                color: #07130C;
            }

            & .text h3 {
                font-size: 2rem;
                margin-bottom: 1.5rem;
                font-weight: 300;
                color: #1E5739;
            }

            & .text h4 {
                font-size: 1.5rem;
                line-height: 1.6;
                margin-bottom: 2rem;
                color: #369B65;
                font-weight: 300;
            }

            & .text a {
                position: absolute;
                text-decoration: none;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 1rem 2rem;
                border: 1px solid #1E5739;
                border-radius: .5rem;
                background: #fff;
                cursor: pointer;
                transition: 0.3s;
                width: 13rem;
            }

            & .text a:hover {
                background: #A8E1C2;
            }

            & .images {
                width: 90%;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

            & .images img {
                max-width: 100%;
                border-radius: 5px;
                opacity: 0;
                transform: translateY(30px);
                transition: all 0.6s ease-out;
            }

            & .images .img2 {
                align-self: flex-end;
            }

            & .images .img3 {
                align-self: center;
            }

            & .images img.show {
                opacity: 1;
                transform: translateY(0);
            }
        }


        .contact {
            background: #A8E1C2;
            padding: 4rem 2rem;
            text-align: center;


            & h2 {
                font-size: 2.5rem;
                font-weight: 400;
                color: #07130C;
                margin-bottom: 1rem;
            }

            & p {
                color: #133523;
                text-align: center;
                font-size: 1.5rem;
                font-weight: 300;
                max-width: 50%;
                margin: 3rem auto 3rem;
                line-height: 1.5;
            }

            & .contact-container {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 3rem;
                flex-wrap: wrap;
            }


            & .contact-image img {
                animation: float 4s ease-in-out infinite;
            }

            & .contact-form {
                background: #fff;
                padding: 2rem;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                border-radius: 4px;
                display: flex;
                flex-direction: column;
                gap: 1rem;
                min-width: 300px;
                max-width: 500px;
                width: 100%;
            }

            & .contact-form input,
            .contact-form textarea {
                border: 1px solid #ccc;
                padding: 0.8rem;
                font-size: 0.95rem;
                border-radius: 3px;
                outline: none;
                transition: border 0.2s ease;
            }

            & .contact-form input:focus,
            .contact-form textarea:focus {
                border-color: #369b65;
            }

            & .contact-form button {
                background: #1c5c39;
                color: #fff;
                border: none;
                padding: 1rem;
                font-size: 1rem;
                cursor: pointer;
                transition: background 0.3s ease;
            }

            & .contact-form button:hover {
                background: #2e7c52;
            }

        }

        .footer {
            background: #2C2C2C;
            color: #fff;
            padding: 3rem 2rem 1rem;
            font-family: sans-serif;

            .footer-container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 2rem;
                max-width: 1200px;
                margin: 0 auto;
            }

            & .footer-logo img {
                background-color: #fff;
                padding-top: 2rem;
                padding-bottom: 2rem;
                padding-left: 1rem;
                padding-right: 1rem;
                width: 100%;
            }

            & .footer-links h4,
            .footer-contact h4,
            .footer-social h4 {
                font-size: 1rem;
                margin-bottom: 1rem;
                font-weight: bold;
            }

            & .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            & .footer-links ul li {
                margin: 0.5rem 0;
            }

            & .footer-links ul li a {
                color: #ccc;
                text-decoration: none;
                transition: color 0.3s ease;
            }

            & .footer-links ul li a:hover {
                color: #fff;
            }

            & .footer-contact p {
                margin: 0.5rem 0;
                color: #ccc;
            }

            & .footer-social .social-icons {
                display: flex;
                gap: 1rem;
            }

            & .footer-social a {
                color: #ccc;
                font-size: 1.2rem;
                transition: color 0.3s ease;
            }

            & .footer-social a:hover {
                color: #fff;
            }

            & .footer-bottom {
                text-align: center;
                padding-top: 1rem;
                margin-top: 2rem;
                border-top: 1px solid #444;
                font-size: 0.9rem;
                color: #aaa;
            }
        }


        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes rotateSquare {
            0% {
                transform: rotate(0deg) scale(1);
            }

            50% {
                transform: rotate(180deg) scale(1.05);
            }

            100% {
                transform: rotate(360deg) scale(1);
            }
        }

        @keyframes float {

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

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


        /* ============================================================= media queries */
        @media (max-width: 1024px) {
            header {
                padding: 1rem;
            }

            .slide {
                padding-left: 4rem;
                padding-right: 4rem;
                flex-direction: column;
                text-align: center;
            }

            .content {
                max-width: 80%;
            }

            .content h2 {
                font-size: 2.5rem;
                line-height: 3rem;
            }

            .content p {
                font-size: 1.3rem;
            }

            .cards {
                grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
                padding: 3rem 2rem;
            }

            .factory,
            .multiplatform {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 3rem 5%;
            }

            .factory .images,
            .multiplatform .images {
                align-items: center;
            }

            .factory .text a,
            .multiplatform .text a {
                position: relative;
                margin: 2rem auto 0;
            }

            .clients {
                margin: 5rem auto;
            }

            .partners .partners-logos {
                gap: 2rem;
            }

            .contact p {
                max-width: 80%;
                font-size: 1.2rem;
            }

            .footer .footer-container {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            }
        }

        @media (max-width: 768px) {

            #header {
                & .logo-img {
                    width: 120px;
                }

                & .menu-toggle-img {
                    width: 30px;
                }

            }

            .nav-links {
                position: absolute;
                top: 60px;
                right: 30px;
                background: #fff;
                flex-direction: column;
                gap: .3rem;
                padding: 1rem;
                width: 200px;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transform: translateY(-10px);
                transition: all 0.3s ease-in-out;
            }

            .nav-links a {
                font-weight: 300;
            }

            .nav-links.active {
                max-height: 500px;
                opacity: 1;
                transform: translateY(0);
            }

            .menu-toggle {
                display: block;
                font-size: 2rem;
                cursor: pointer;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 0.8rem 1rem;
            }

            #header {
                & .logo-img {
                    width: 120px;
                }

                & .menu-toggle-img {
                    width: 30px;
                }

            }

            .clients h2 {
                font-size: 1.5rem;
                text-align: center;
                margin: 1rem auto;

            }

            .slide {
                flex-direction: column;
                padding: 2rem 1rem;
                min-height: 50vh;

                & img {
                    width: 300px;
                }
            }

            .content {
                max-width: 100%;
                text-align: center;
            }

            .content h2 {
                font-size: 1.8rem;
                line-height: 2.4rem;
            }

            .content p {
                font-size: 1.1rem;
            }

            .content a {
                margin: 1.5rem auto 0;
                padding: 0.8rem 1.2rem;
                width: 10rem;
            }

            .services {
                & a {
                    bottom: -5rem;
                }

                & h2 {
                    font-size: 1.5rem;
                    text-align: center;
                    margin: 1rem .5rem;
                }


            }

            .cards {
                grid-template-columns: 1fr;
                padding: 2rem 1rem;
            }

            .card {
                width: 85%;
                padding: 2rem 1rem;
                margin: 0 auto;
            }

            .factory,
            .multiplatform {
                grid-template-columns: 1fr;
                padding: 2rem 1rem;
            }

            .factory .text h2,
            .multiplatform .text h2 {
                font-size: 1.5rem;
            }

            .factory .text h3,
            .multiplatform .text h3 {
                font-size: 1.2rem;
            }

            .factory .text h4,
            .multiplatform .text h4 {
                font-size: 1rem;
            }

            .multiplatform {
                & .images img {
                    max-width: 50%;
                    border-radius: 5px;
                    opacity: 0;
                    transform: translateY(30px);
                    transition: all 0.6s ease-out;
                }
            }

            .partners {
                padding: 2rem 1rem;
                margin-bottom: 3rem;
                margin-top: 3rem;



                & .square1 {
                    width: 100px;
                    height: 100px;
                    top: 12%;
                    left: 3%;
                }

                & .square2 {
                    width: 30px;
                    height: 30px;
                    top: 70%;
                    left: 15%;
                    animation-duration: 15s;
                }

                & .square3 {
                    width: 90px;
                    height: 90px;
                    top: 35%;
                    right: 5%;
                    animation-duration: 18s;
                }

                & .square4 {
                    width: 30px;
                    height: 30px;
                    top: 5%;
                    right: 25%;
                    animation-duration: 14s;
                }
            }

            .partners .partners-logos {
                gap: 2rem;

                & img {
                    width: 90%;
                }
            }

            .contact {
                padding: 2rem 1rem;

                & .contact-image img {
                    display: none;
                }

                & .contact-form {
                    min-width: 200px;
                    max-width: 300px;
                }

            }

            .contact h2 {
                font-size: 2rem;
            }

            .contact p {
                font-size: 1.1rem;
                max-width: 100%;
            }

            .contact .contact-container {
                flex-direction: column;
                gap: 2rem;
            }

            .footer {
                padding: 2rem 1rem;
            }

            .footer .footer-container {
                grid-template-columns: 1fr;
            }

            .footer-logo img {
                width: 80%;
                margin: 0 auto;
            }

            .footer-bottom {
                font-size: 0.8rem;
            }
        }