/* Estilo general del menú */
nav {
    background-color: #f8f9fa;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #d6ab08;
    padding: 10px 20px;
    display: block;
    font-size: 16px;
    font-weight: bold;
}

nav ul li a:hover {
    background-color: #d6ab08;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Submenú */
nav ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f8f9fa;
    padding: 0;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

nav ul li ul.sub-menu li {
    width: 200px;
}

nav ul li ul.sub-menu li a {
    padding: 10px;
    border-bottom: 1px solid #e9ecef;
}

nav ul li ul.sub-menu li a:hover {
    background-color: #d6ab08;
    color: white;
}

/* Mostrar el submenú al pasar el mouse */
nav ul li:hover ul.sub-menu {
    display: block;
}


.logo {
    max-width: 150px;
    display: block;
    margin: 0 auto 10px;
}


.line-below-logo {
    width: 100%;
    height: 2px;
    background-color: #d6ab08;
    margin: 20px 0;
}


@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    nav ul li ul.sub-menu {
        position: static;
        box-shadow: none;
    }
}


body {
    font-family: Arial, sans-serif;
}


.line-below-logo {
    width: 100%;
    height: 2px;
    background-color: #d6ab08;
    margin-bottom: 20px;
}


.title-section {
    text-align: center;
    margin: 50px 0;
}

.title-section h2 {
    font-size: 28px;
    color: #d6ab08;
    font-weight: bold;
}


.sections {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    flex-wrap: wrap;
}

.section {
    flex: 1;
    text-align: center;
    padding: 20px;
    border: 1px solid #d6ab08;
    margin: 10px;
    min-width: 300px;
}

.section img {
    width: 70%;
    height: auto;
    margin-bottom: 10px;
}

.section .btn {
    margin-top: 10px; 
    background-color:#d6ab08 ;
    border-color: #d6ab08;
}

.section h3 {
    font-size: 20px;
    color: #d6ab08;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .sections {
        flex-direction: column;
    }
}

/* estilos footer */
.footer {
    background-color: #696969;
    padding: 40px 0;
    border-top: 2px solid #d6ab08;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 10px;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons li {
    display: inline-block;
}

.social-icons li a img {
    width: 25px;
    height: 25px;
}

.footer h5 {
    font-size: 18px;
    color: #d6ab08;
    margin-bottom: 15px;
}

.footer p, .footer a {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 5px;
    text-decoration: none;
}

.footer a:hover {
    color: #007bff;
    text-decoration: underline;
}

.footer .text-center {
    text-align: center;
}

.container {
    max-width: 1100px;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer .col-md-3 {
        margin-bottom: 20px;
    }
}


.energy-section {
    background-color: #ffffff;
    padding: 40px 0;
    border-top: 2px solid #d6ab08;
    margin-top: 40px;
}

.energy-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.energy-section h2 {
    font-size: 24px;
    color: #d6ab08;
    font-weight: bold;
    margin-bottom: 20px;
}

.energy-section p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.energy-section .text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .energy-section .row {
        flex-direction: column;
    }

    .energy-section .text-center {
        margin-bottom: 20px;
    }
}

/* mision vicion  */
.mission-vision-section {
    margin: 50px 0;
}

.mission-vision-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
}

.mission-vision-section h2 {
    color: #d6ab08;
    font-weight: bold;
    margin-bottom: 20px;
}

.mission-vision-section p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.clientes-section {
    color: #d6ab08;

    text-align: center;
    padding: 40px 0;
    background-color: #f9f9f9;
}

.clientes-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.clientes-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.logo-cliente {
    max-width: 200px;
    height: auto;
}


