/* ======== Configuración Global y Variables ======== */
:root {
    /* MODIFICADO: Cambiado a los colores del logo */
    --primary-accent: #FFC000; /* Naranja/Amarillo brillante del logo */
    --secondary-accent: #FFA500; /* Un tono un poco más oscuro o vibrante del naranja */
    
    --dark-bg: #121212; /* Fondo muy oscuro */
    --dark-card: #1E1E1E; /* Fondo para tarjetas y elementos oscuros */
    --light-bg: #FFFFFF; /* Fondo blanco para secciones claras */
    --text-dark: #FFFFFF; /* Color de texto principal para fondos oscuros */
    --text-light: #333333; /* Color de texto principal para fondos claros */
    --text-secondary: #B3B3B3; /* Texto secundario o de menor importancia */
    --font-family: 'Poppins', sans-serif;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --whatsapp-green: #25D366; /* Mantener el verde original de WhatsApp */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--light-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    /* MODIFICADO: Enlaces por defecto usan el color de acento */
    color: var(--primary-accent);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; margin-bottom: 30px; text-align: center; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* ======== Botones de Utilidad ======== */
.btn-green { /* Renombrado para mantener el color de WhatsApp */
    display: inline-block;
    background-color: var(--whatsapp-green); /* Mantiene el verde de WhatsApp */
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--whatsapp-green);
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); /* Sombra verde */
}

.btn-blue { /* Renombrado para ser un botón secundario */
    display: inline-block;
    background-color: var(--secondary-accent); /* Usa el color secundario del logo */
    color: var(--light-bg);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--secondary-accent);
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3); /* Sombra naranja */
}


/* ======== Header ======== */
.header {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(8px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: background-color 0.3s ease;
}

.header.sticky {
    background: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav a:not(.nav-button):hover {
    color: var(--primary-accent); /* MODIFICADO */
}

.nav-button {
    /* MODIFICADO: Usa el color primario del logo */
    background-color: var(--primary-accent);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
}

.nav-button:hover {
    color: #000;
    transform: scale(1.05);
}

/* ======== Hero Section ======== */
.hero {
    min-height: 90vh;
    background: url('/assets/Home_back.webp') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    padding: 100px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ======== Attention Banners ======== */
.attention-banner {
    /* MODIFICADO: Usa el color primario del logo */
    background-color: var(--primary-accent);
    color: #000; /* Texto oscuro para contraste */
    text-align: center;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.service-area-banner {
    background-color: var(--dark-bg);
    /* MODIFICADO: Texto del color primario del logo */
    color: var(--primary-accent);
    text-align: center;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ======== About Section ======== */
.about-section {
    background-color: var(--light-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 50px;
}

.about-logo img {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 50%;
    /* MODIFICADO: Borde del color primario del logo */
    border: 8px solid var(--primary-accent);
    box-shadow: var(--shadow-dark);
}

.about-text h3 {
    /* MODIFICADO: Título con el color primario del logo */
    color: var(--primary-accent);
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
}

/* ======== Services Section ======== */
.services-section {
    background-color: var(--dark-bg);
    color: var(--text-dark);
}

.services-section h2 {
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.service-card:hover {
    transform: translateY(-10px);
    /* MODIFICADO: Sombra del color primario del logo */
    box-shadow: 0 15px 30px rgba(255, 192, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    margin-bottom: 20px;
}

/* ======== Why Choose Us Section ======== */
.why-section {
    background-color: var(--light-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 20px;
}

.why-card i {
    font-size: 3rem;
    /* MODIFICADO: Iconos del color primario del logo */
    color: var(--primary-accent);
    margin-bottom: 20px;
}

.why-card h4 {
    margin-bottom: 10px;
}

/* ======== Process Section ======== */
.process-section {
    background-color: var(--dark-bg);
    color: var(--text-dark);
}

.process-section h2 {
    color: var(--text-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    /* MODIFICADO: Fondo del número del color primario del logo */
    background-color: var(--primary-accent);
    color: #000; /* Texto oscuro para contraste */
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.process-step h4 {
    margin-bottom: 10px;
}

/* ======== Partners Section ======== */
.partners-section {
    background-color: var(--light-bg);
    text-align: center;
}

.payment-image, .brands-image {
    max-width: 80%;
    margin: 0 auto;
}

.brands-title {
    margin-top: 60px;
}

/* ======== FAQ Section ======== */
.faq-section {
    background-color: var(--light-bg);
}

.faq-section p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
    /* MODIFICADO: Icono del color primario del logo */
    color: var(--primary-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer.active {
    max-height: 200px; /* Ajusta si la respuesta es más larga */
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    text-align: left;
    font-size: 1rem;
}

/* ======== Final CTA Section ======== */
.final-cta {
    background-color: var(--dark-bg);
    color: var(--text-dark);
    text-align: center;
}

.final-cta h2 {
    color: var(--text-dark);
    font-size: 2.8rem;
}

.final-cta p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ======== Footer ======== */
.footer {
    background-color: #000;
    color: var(--text-secondary);
    padding: 60px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col p {
    margin-bottom: 15px;
}

.footer-col i {
    /* MODIFICADO: Iconos del footer del color primario del logo */
    color: var(--primary-accent);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    /* MODIFICADO: Enlaces del footer al pasar el ratón del color primario del logo */
    color: var(--primary-accent);
}

.footer-bottom {
    background-color: #000;
    border-top: 1px solid #333;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* ======== Floating WhatsApp Button ======== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--whatsapp-green); /* Mantiene el verde de WhatsApp */
    color: var(--light-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ======== Responsive Design ======== */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .hero h1 { font-size: 3rem; }

    .main-nav a:not(.nav-button) {
        display: none; /* Oculta enlaces en tablet, mantiene botón */
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-logo img {
        margin-bottom: 30px;
    }

    .services-grid,
    .why-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }

    .header-container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 40px;
    }

    .nav-button {
        padding: 6px 16px;
        font-size: 0.9rem;
    }

    section {
        padding: 60px 0;
    }

    .services-grid,
    .why-grid,
    .process-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col i {
        display: inline-block; /* Volver a mostrar iconos en footer móvil si se ocultan antes */
        margin-right: 5px;
    }
}
```http://googleusercontent.com/image_generation_content/0

 Espero que este cambio de colores resalte la identidad de tu marca ElectroHouse de la forma que deseas.

Recuerda que para el botón de WhatsApp flotante y los botones específicos de contacto de WhatsApp, he mantenido su color verde original (`--whatsapp-green: #25D366;`) porque es un color universalmente reconocido para esa aplicación y ayuda a la usabilidad.

¡Hazme saber si tienes alguna otra modificación en mente!