 /* Reset básico y configuración general */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        /* Variables de colores */
        :root {
            --primary-orange: #ff6b35;
            --light-orange: #ff8c5a;
            --dark-orange: #e55a2b;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --text-dark: #333333;
            --text-light: #666666;
        }

        /* HEADER - Barra superior con información de contacto */
        .header {
            background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
            color: var(--white);
            padding: 0.5rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-container {
            max-width: 2000px;
            margin: 0 auto;
            padding: 30px 3.5rem;
            display: flex;
            justify-content: space-between;
    /*        align-items: center;     */
            flex-wrap: wrap;
            min-width: none;
        }

        /* Logo y nombre de la marca */

        .logo, .logo-img {
            width: 80px;
            height: auto;
            font-family: "poppins", sans-serif;
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

       .logo-img {
            width: 100px;
            height: auto;
        }

        /* Información de contacto en el header */
        .header-contact {
            display: flex;
            gap: 2rem;
            align-items: right;    
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .contact-item i {
            font-size: 1.1rem;
        }

        /* SECCIÓN HERO - Presentación principal */
        .hero {
            background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
            padding: 4rem 0;
            text-align: center;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: 3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .hero-highlight {
            color: var(--primary-orange);
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Botón principal */
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
            color: var(--white);
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
            background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
        }

        /* SECCIÓN DE SERVICIOS */
        .services {
            padding: 4rem 0;
            background-color: var(--white);
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 3rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        /* Tarjetas de servicios */
        .service-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-orange);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* FOOTER - Pie de página con contacto */
        .footer {
            background: linear-gradient(135deg, var(--text-dark), #222);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .footer h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--primary-orange);
        }

        .footer p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: #ccc;
        }

        /* Enlaces de contacto en el footer */
        .contact-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .contact-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary-orange);
            color: var(--white);
            padding: 1rem 1.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .contact-link:hover {
            background: var(--dark-orange);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        .contact-link i {
            font-size: 1.2rem;
        }

        /* Copyright */
        .copyright {
            border-top: 1px solid #444;
            padding-top: 1rem;
            color: #999;
            font-size: 0.9rem;
        }

        /* RESPONSIVE DESIGN - Adaptación para móviles */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                gap: 1rem;
                text-align: right;
                padding: 1rem 1rem;
            }
            .logo-img {
                order: 2;
                margin-left: 0;
                margin-right: 0.5rem;
                width: 70px;
                height: auto;
                }
            


            .header-contact {
                order: 2;
                flex-direction: column;
                align-items: flex-end;
                gap: 0.5rem;
            }

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

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

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

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

            .contact-links {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Iconos usando símbolos Unicode */
        .icon-phone::before { content: "📞 "; }
        .icon-email::before { content: "✉️ "; }
        .icon-whatsapp::before { content: "💬 "; }
        .icon-web::before { content: "🌐 "; }
        .icon-design::before { content: "🎨 "; }
        .icon-mobile::before { content: "📱 "; }
        .icon-seo::before { content: "🚀 "; }

        /* SECCIÓN POR QUÉ NECESITAS UN SITIO WEB */
        .why-website {
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 50%, var(--light-gray) 100%);
            padding: 4rem 0;
        }

        .why-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header de la sección */
        .why-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .why-header h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .why-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Grid de beneficios */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        /* Tarjetas de beneficios */
        .benefit-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 107, 53, 0.1);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
            border-color: var(--primary-orange);
        }

        .benefit-icon {
            margin-bottom: 1.5rem;
            display: flex;
            justify-content: center;
        }

        .benefit-card h3 {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .benefit-card p {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Mensaje final de ZentikCode */
        .zentik-message {
            background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
            border-radius: 25px;
            padding: 3rem;
            color: var(--white);
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            align-items: center;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .message-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .message-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            opacity: 0.95;
        }

        .message-content strong {
            color: var(--white);
            font-weight: bold;
        }

        .message-illustration {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Responsive para la sección */
        @media (max-width: 768px) {
            .why-header h2 {
                font-size: 2rem;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .benefit-card {
                padding: 1.5rem;
            }

            .zentik-message {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 2rem;
            }

            .message-illustration svg {
                width: 150px;
                height: 112px;
            }
        }