/* Estilos adicionales para emular el diseño original y asegurar la funcionalidad */
:root {
    --primary-color: #0E344B; /* Azul oscuro de la imagen */
    --secondary-color: #9EC027; /* Verde/Lima de la imagen */
}
body {
    font-family: 'Montserrat', sans-serif;
    margin-top: 90px; /* Adjust this value based on your header's actual height */
}
.color_28 {
    /* **MODIFICACIÓN: Se añade !important para sobrescribir reglas más específicas.** */
    color: var(--secondary-color) !important;
}
.clients-section {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}
.clients-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2rem;
}
.clients-grid img,
.clients-grid .client-logo-svg {
    flex: 0 1 180px;
    max-width: 180px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}
.clients-grid img:hover,
.clients-grid .client-logo-svg:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.whatsapp-float img {
    width: 35px;
    margin-top: 12px;
}

/* Estilo para el SVG del logo en el Header (heredando el estilo del img original si existe) */
.header-container .logo a svg {
    height: 60px;
    width: auto;
    vertical-align: middle;
}

.hero-image {
    margin-left: auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 350px;
}

.servicios-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.hero-content h1 {
    color: var(--primary-color);
}

/* --- Sobrescribe cualquier interferencia previa del footer --- */
footer {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 3rem 0 !important;
    box-sizing: border-box !important;
}

.footer-container {
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* Added for fixed header */
.header-container {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff; /* Assuming a white background for the header */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* El SVG dentro del div necesita estilos para escalar */
.clients-grid .client-logo-svg svg {
    width: 100%;
    height: 100%;
}