/* Estilos generales */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

/* Contenedor principal del header */
.header-ecodiesel {
    width: 100%;
    box-sizing: border-box;
}

/* Barra superior verde */
.header-top-bar {
    background-color: #659E3F;
    height: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    font-size: 14px;
}

.language-selector img {
    height: 15px;
}

/* Sección principal con el logo y el texto */
.header-main-content {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

.logo-container img {
    max-height: 80px;
}

.motto {
    text-align: center;
    color: #274C23;
}

.motto h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin: 0;
}

.motto p {
    font-size: 0.9em;
    margin: 0;
    font-weight: 400;
}

.motto img {
    max-height: 80px !important;
    width: 100%;
}

/* Contenedor de redes sociales */
.social-media-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.social-media-container i {
    font-size: 25px;
    color: white;
}

.follow-us-text {
    font-size: 1em;
    color: #274C23;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #659E3F;
}

.icon-circle img {
    width: 25px;
    height: 25px;
}

/* Media query para pantallas más pequeñas (opcional, pero recomendado) */
@media (max-width: 768px) {
    .header-main-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}


/* Estilos del footer */
.footer-ecodiesel {
    width: 100%;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

/* Sección principal del footer */
.footer-main-content {
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
}

.footer-logo-text img {
    max-height: 100px;
    /* Ajusta el tamaño del logo si es necesario */
}

/* Contenedor de los ítems de contacto */
.footer-contact {
    display: flex;
    gap: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #274C23;
}

.contact-item img {
    width: 25px;
    height: 25px;
}

.contact-item h4 {
    font-size: 1em;
    font-weight: 600;
    margin: 0;
}

.contact-item p {
    font-size: 1em;
    margin: 0;
}

/* Barra inferior de derechos de autor */
.footer-copyright {
    background-color: #274C23;
    color: #FFFFFF;
    text-align: center;
    padding: 15px 40px;
    font-size: 0.85em;
}

.footer-copyright b {
    font-weight: 600;
}

/* Media query para hacer el footer responsivo */
@media (max-width: 768px) {
    .footer-main-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 20px;
    }
}

#headForm {
    background-color: #274C23;
}