@charset "utf-8";
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            width: 100%;
            height: 680px;
           
			background-image:url(img/banner_estat1.png);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 80px;
        }

        .hero-content {
            background: rgba(255, 255, 255, 0.95);
            padding: 60px 50px;
            max-width: 500px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .hero-content h2 {
            font-size: 14px;
            letter-spacing: 3px;
            color: #333;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .hero-content h1 {
            font-size: 32px;
            line-height: 1.3;
            color: #1a1a1a;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .hero-content p {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 35px;
        }

        .cta-button {
            display: inline-block;
            background: #2d2d2d;
            color: white;
            padding: 18px 45px;
            text-decoration: none;
            letter-spacing: 2px;
            font-size: 13px;
            transition: all 0.3s ease;
            border: 2px solid #2d2d2d;
        }

        .cta-button:hover {
            background: transparent;
            color: #2d2d2d;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Marquee Section */
        .marquee-section {
            background: #f5f5f5;
            padding: 40px 0;
            overflow: hidden;
            position: relative;
        }

        .marquee-container {
            display: flex;
            white-space: nowrap;
            animation: marquee 30s linear infinite;
        }

        .marquee-content {
            display: flex;
            align-items: center;
            padding-right: 100px;
        }

        .marquee-text {
            font-size: 66px;
            font-weight: 300;
            letter-spacing: 10px;
            color: #2D2D2D;
            text-transform: uppercase;
			font-family: 'Sitka Text', Georgia, serif;
        }

        .marquee-icon {
            width: 60px;
            height: 60px;
            background: #5a7d6b;
            margin: 0 80px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Para duplicar el contenido y hacer el loop infinito */
        .marquee-container::after {
            content: attr(data-content);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero-section {
                height: auto;
                min-height: 500px;
                padding: 40px 20px;
                align-items: flex-start;
                padding-top: 60px;
            }

            .hero-content {
                padding: 40px 30px;
                max-width: 100%;
            }

            .hero-content h2 {
                font-size: 12px;
                letter-spacing: 2px;
            }

            .hero-content h1 {
                font-size: 24px;
                margin-bottom: 20px;
            }

            .hero-content p {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 25px;
            }

            .cta-button {
                padding: 15px 35px;
                font-size: 12px;
                width: 100%;
                text-align: center;
            }

            .marquee-section {
                padding: 30px 0;
            }

            .marquee-text {
                font-size: 40px;
                letter-spacing: 5px;
            }

            .marquee-icon {
                width: 40px;
                height: 40px;
                margin: 0 40px;
                font-size: 18px;
            }

            @keyframes marquee {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(-50%);
                }
            }
        }

        @media (max-width: 480px) {
            .hero-content {
                padding: 30px 20px;
            }

            .hero-content h1 {
                font-size: 20px;
            }

            .marquee-text {
                font-size: 30px;
                letter-spacing: 3px;
            }

            .marquee-icon {
                width: 30px;
                height: 30px;
                margin: 0 30px;
                font-size: 14px;
            }
        }
