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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }


        .hero {
            height: 100vh;
            min-height: 600px;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)), url('img/bk_arayca_4.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            max-width: 90%;
            width: 100%;
            max-width: 800px;
            padding: 2rem 1rem;
            animation: fadeInUp 2s ease-out;
        }

        .logo-lines {
            color: #f4c430;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            transform: rotate(-15deg);
        }

        .logo-text {
            color: #f4c430;
            font-size: 1.8rem;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }

        .hero .slogan {
            font-family: "Oswald", sans-serif;
            font-optical-sizing: auto;
            font-weight: 450;
            font-style: normal;
            font-size: clamp(1.2rem, 3vw, 2rem);
            margin-bottom: 2rem;
            color: white;
            text-shadow: 2px 2px 5px black;
            line-height: 1.3;
        }


        .oswald-moving {
          font-family: "Oswald", sans-serif;
          font-optical-sizing: auto;
          font-weight: 450;
          font-style: normal;
        }

        .hero .description {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        .contact-section {
            background: #f8f9fa;
            padding: clamp(2rem, 5vw, 4rem) 1rem;
            text-align: center;
        }

        .contact-section h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 3rem;
            color: #2d5016;
        }

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

        .contact-card {
            background: white;
            padding: 2rem 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .contact-icon {
            font-size: clamp(2.5rem, 4vw, 3rem);
            margin-bottom: 1rem;
            color: #2d5016;
        }

        .whatsapp-card .contact-icon {
            color: #25D366;
        }

        .facebook-card .contact-icon {
            color: #1877F2;
        }

        .email-card .contact-icon {
            color: #EA4335;
        }

        .contact-card h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            margin-bottom: 1rem;
            color: #333;
        }

        .contact-link {
            display: inline-block;
            padding: 1rem 2rem;
            background: #2d5016;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-top: 1rem;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .contact-link:hover {
            background: #1a3009;
            transform: scale(1.05);
        }

        .whatsapp-card .contact-link {
            background: #25D366;
        }

        .whatsapp-card .contact-link:hover {
            background: #1da851;
        }

        .facebook-card .contact-link {
            background: #1877F2;
        }

        .facebook-card .contact-link:hover {
            background: #166fe5;
        }

        .email-card .contact-link {
            background: #EA4335;
        }

        .email-card .contact-link:hover {
            background: #d93025;
        }

        .services-section {
            padding: clamp(2rem, 5vw, 4rem) 1rem;
            background: #2d5016;
            color: white;
            text-align: center;
        }

        .services-section h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 3rem;
            color: #f4c430;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .service-item {
            padding: 2rem 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .service-item i {
            font-size: clamp(2.5rem, 4vw, 3rem);
            color: #f4c430;
            margin-bottom: 1rem;
        }

        .service-item h3 {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            margin-bottom: 1rem;
        }

        .footer {
            background: #1a3009;
            color: white;
            text-align: center;
            padding: 2rem 1rem;
        }


        .location-section {
            padding: clamp(2rem, 5vw, 4rem) 1rem;
            background: #f8f9fa;
            text-align: center;
        }

        .location-section h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 3rem;
            color: #2d5016;
        }

        .map-container {
            max-width: 1000px;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 2s ease-out;
        }

        .map-container iframe {
            width: 100%;
            height: 450px;
            border: none;
        }

        .footer p {
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .social-links a {
            color: #f4c430;
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            transition: color 0.3s ease;
            min-height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-links a:hover {
            color: white;
        }


        .logo {
                width: clamp(280px, 30vw, 356px);
                height: clamp(280px, 30vw, 356px);
                margin: 0 auto 2rem;
                display: flex;
                align-items: center;
                justify-content: center;
                /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);*/
                border-radius: 0%;
                overflow: hidden;
                background: transparent;
            }

        .logo-image {
                width: 100%;
                height: 100%;
                object-fit: contain;
                border-radius: 0%;
            }


        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Tablets (768px - 1024px) */
        @media (min-width: 768px) and (max-width: 1024px) {
            .hero {
                height: 50vh;
                min-height: 500px;
                background-attachment: scroll;
                background-size: cover;
                background-position: center;
                background-color: #2d5016;
            }

            .hero-content {
                padding: 2rem;
            }

            .contact-grid {  
                display: grid;  
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  
                gap: 2rem;  
                max-width: 800px;  
                margin: 0 auto;  
                justify-items: center;  
            }  
  
            .services-grid {  
                display: grid;  
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  
                gap: 2rem;  
                max-width: 800px;  
                margin: 0 auto;  
                justify-items: center;  
            }

            .logo {
                width: 200px;
                height: 200px;
            }

            .contact-section, .services-section, .location-section {
                padding: 3rem 2rem;
            }
        }

        /* Móviles (hasta 767px) */
        @media (max-width: 767px) {
            .hero {
                height: 60vh;
                min-height: 400px;
                max-height: 500px;
                background-attachment: scroll;
                background-size: cover;
                background-position: center;
                background-color: #2d5016;
            }

            .hero-content {
                padding: 1rem 0.5rem;
                max-width: 95%;
            }

            .hero h1 {
                font-size: 2.2rem;
                margin-bottom: 0.8rem;
            }

            .hero .slogan {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
            }

            .hero .description {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }

            .logo {
                width: 140px;
                height: 140px;
                margin-bottom: 1.5rem;
            }

            .logo-text {
                font-size: 1.2rem;
                letter-spacing: 1px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 0.5rem;
            }

            .contact-card {
                padding: 1.5rem 1rem;
            }

            .contact-icon {
                font-size: 2.5rem;
            }

            .contact-card h3 {
                font-size: 1.2rem;
            }

            .contact-link {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 0.5rem;
            }

            .service-item {
                padding: 1.5rem 1rem;
            }

            .service-item i {
                font-size: 2.5rem;
            }

            .service-item h3 {
                font-size: 1.1rem;
            }

            .map-container iframe {
                height: 300px;
            }

            .contact-section, .services-section, .location-section {
                padding: 2rem 1rem;
            }

            .contact-section h2, .services-section h2, .location-section h2 {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }

            .footer {
                padding: 1.5rem 1rem;
            }

            .social-links {
                gap: 0.8rem;
            }
        }

        /* Móviles pequeños (hasta 480px) */
        @media (max-width: 480px) {
            .hero {
                height: 20vh;
                min-height: 250px;
                max-height: 300px;
                background-size: cover;
                background-position: center;
            }

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

            .hero .slogan {
                font-size: 1rem;
            }

            .hero .description {
                font-size: 0.9rem;
            }

            .logo {
                width: 120px;
                height: 120px;
            }

            .logo-text {
                font-size: 1rem;
            }

            .contact-grid, .services-grid {
                padding: 0;
            }

            .contact-card, .service-item {
                padding: 1.2rem 0.8rem;
            }

            .contact-section h2, .services-section h2, .location-section h2 {
                font-size: 1.5rem;
            }

            .map-container iframe {
                height: 250px;
            }
        }