 /* Estilos generales */
 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}

/* Encabezado */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    color: #222;
    padding: 15px 50px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo img {
    height: 50px;
}
.contact-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-buttons a {
    background: transparent;
    padding: 5px;
    display: inline-block;
}

/* Navegación */
nav {
    background: white;
    color: black;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 10px 15px;
    display: block;
}

/* Sección con fondo turquesa */
.turquesa-section {
    background: rgb(201, 236, 231);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.turquesa-text {
    max-width: 50%;
    padding: 20px;
}
.turquesa-image {
    max-width: 50%;
}
.turquesa-image img {
    max-width: 80%; 
    display: block; 
    margin: auto;
    height: auto;
    border-radius: 5px;
}

.turquesa-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.turquesa-buttons a {
    background: #234361;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

 /* Sección con tarjetas */
 .cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px;
}
.card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.card button {
    background: #234361;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

/* botones del index en cards*/
.btn {
    display: inline-block;
    background-color: #234361;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background-color: #1b2e4b;
}

/* Sección de información de energía */
.energy-info {
    background: #f4f4f4;
    padding: 50px;
    text-align: center;
}

.energy-text {
    max-width: 800px;
    margin: auto;
}

.energy-text h2 {
    color: #234361;
    margin-bottom: 20px;
}

.energy-text h3 {
    color: #333;
    margin-top: 20px;
}

.energy-text ul {
    list-style: none;
    padding: 0;
}

.energy-text ul li {
    background: url('https://cdn-icons-png.flaticon.com/512/845/845646.png') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
}

/* Seccion de acerca de nosotros*/

.content-section {
    max-width: 900px; 
    margin: 0 auto; 
    padding: 20px; 
    text-align: justify; 
}

/* Seccion de productos*/

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.product-table th, .product-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.product-table th {
    background-color: #234361;
    color: white;
    text-align: center;
}

.product-table ul {
    padding-left: 20px;
}

.upcoming-products {
    background-color: #f4f4f4;
    padding: 40px;
    margin-top: 30px;
    border-radius: 10px;
}

.upcoming-products h2 {
    text-align: center;
    color: #234361;
    margin-bottom: 20px;
}

.product {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Seccion de aliados*/

.partners-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.partners-section h2 {
    color: #234361;
}

.partner-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.partner-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.partner-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.partner-card h3 {
    margin: 10px 0;
    color: #234361;
}

.partner-card p {
    font-size: 14px;
    color: #555;
}

/* Pie de página */
footer {
    background: rgb(35, 55, 97);
    color: white;
    padding: 20px;
    margin-top: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-text {
    text-align: center;
    flex-grow: 1;
}
.footer-logo {
    margin-left: auto;
}
.footer-logo img {
    height: 50px;
    padding: 5px;
}