@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

        :root {
            --primary-color: #2c7744;
            --secondary-color: #4CAF50;
            --text-color: #333;
            --bg-color: #f4f9f5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow: hidden;
            font-size: large;
        }
        h1{
            font-size: 2rem;
        }

        .sections-container {
            height: 100vh;
            overflow: hidden;
            position: relative;
        }

        section {
            height: 100vh;
            width: 100vw;
            position: absolute;
            top: 0;
            left: 0;
            transition: transform .5s cubic-bezier(0.645, 0.045, 0.355, 1);
            visibility: hidden;
            /* Inicialmente oculto */
        }

        section.active {
            visibility: visible;
            /* Visible cuando está activo */
        }

        .section-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.9;
            z-index: -1;

        }

        .video-section {
            background-color: #000;
        }

        .video-container {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        #butterfly-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .content {
            max-width: 800px;
            padding: 2rem;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            position: absolute;
            top: 50%;
            opacity: 0;
            transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
        }

        .section-right .content {
            right: 10%;
            transform: translate(50%, -50%);
        }

        .section-left .content {
            left: 10%;
            transform: translate(-50%, -50%);
        }

        section.active .content {
            opacity: 1;
            transform: translate(0, -50%);
        }


        .cta-button {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            padding: 20px 40px;
            font-size: 1.4rem;
            font-weight: bold;
            text-transform: uppercase;
            background: linear-gradient(45deg, #2c7744, #4CAF50);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }

        .eco-card {
            margin-top: 1.5rem;
        }

        ul {
            list-style-type: none;
        }

        li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }

        li::before {
            content: '🍃';
            position: absolute;
            left: 0;
            top: 0;
        }

        .contact-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .contact-toggle:hover {
            background-color: var(--secondary-color);
            transform: scale(1.1);
        }

        .contact-section {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(44, 119, 68, 0.95);
            color: white;
            padding: 1.5rem;
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .contact-section.open {
            transform: translateY(0);
        }

        .contact-content {
            display: flex;
            justify-content: space-around;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-item {
            text-align: center;
            transition: transform 0.3s ease;
            text-decoration: none;
            color: white;
        }

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

        .contact-item i {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        @media (max-width:992px) {
            .content-min {
                font-size: small;
            }
        }

        @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
                gap: 1rem;
            }

            .contact-section {
                padding: 1rem;
            }
            h1 {
                font-size: 2.5rem;
            }

           .text-min {
                font-size: 1rem;
            }
            .section-right .content,
            .section-left .content {
                transform: none;
                left: 0;
                right: 0;
                font-size: smaller;
            }

            .content {
                padding: 1rem;
                margin: 0 1rem;
            }
            #butterfly-video{
                object-fit: contain;
            }
            .section-right .content,
            .section-left  .content-min {
                font-size: small;
            }
        }

        .scroll-indicator {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
        }

        .scroll-dot {
            width: 12px;
            height: 12px;
            background-color: rgba(44, 119, 68, 0.5);
            border-radius: 50%;
            margin: 10px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .scroll-dot.active {
            background-color: var(--primary-color);
            transform: scale(1.5);
        }

        .partners-carousel {
            width: 100%;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.9);
            padding: 20px 0;
        }

        .partners-track {
            display: flex;
            width: fit-content;
            animation: scroll 50s linear infinite;
        }

        .partner-logo {
            flex: 0 0 180px;
            height: 90px;
            margin: 0 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .partner-logo:hover img {
            transform: scale(1.1);
        }

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

            100% {
                transform: translateX(calc(-180px * 9 - 30px * 9));
            }
        }

        .partners-carousel:hover .partners-track {
            animation-play-state: paused;
        }

        /* Responsive styles */
        @media screen and (max-width: 1200px) {
            .partner-logo {
                flex: 0 0 160px;
                height: 80px;
                margin: 0 12px;
            }

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

                100% {
                    transform: translateX(calc(-160px * 9 - 24px * 9));
                }
            }
        }

        @media screen and (max-width: 768px) {
            .partner-logo {
                flex: 0 0 140px;
                height: 70px;
                margin: 0 10px;
            }

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

                100% {
                    transform: translateX(calc(-140px * 9 - 20px * 9));
                }
            }
        }

        @media screen and (max-width: 480px) {
            .partner-logo {
                flex: 0 0 120px;
                height: 60px;
                margin: 0 8px;
            }

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

                100% {
                    transform: translateX(calc(-120px * 9 - 16px * 9));
                }
            }
        }