@import url("../footer.css");
@import url("../cookies.css");

body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #36474b;
    box-sizing: border-box;
}
.button {
    background-color: #0ca16c;
    color: white;
    cursor: pointer;
}
.button:hover {
    background-color: white;
    color: #0ca16c;
    border-color: #0ca16c
}
h1 {
    color: #0ca16c;
}
section  {
    padding: 10px;
}
.separator {
    border-top-style: solid;
    border-top-width: 2px;
    width: 300px;
    border-color: #0ca16c;
    display: inline-block;
}
.required {
    color: red;
}
/* Cabecera superior */
.top-header {
    background-color: #0ca16c;
    padding: 5px;
    display: flex;
    justify-content: right;
    align-items: center;
    font-size: 14px;
    gap: 10px;
    margin: 0 auto;
}
.top-header p {
    margin: 0;
    /*  display: flex;
    align-items: center;
    gap: 5px; */
}
.language-selector {
            display: flex;
            gap: 10px;
        }
/* Cabecera principal con efecto parallax */
.main-header {
    background-image: url('https://grupcarulla.com/wp/wp-content/uploads/2024/02/PHOTO-2024-02-22-10-57-02-e1708601208176.jpg'); /* Reemplazar con ilustración real */
    /* background-size: cover; */
    background-attachment: fixed;
    background-position: center top;
    justify-content: center;
    display: flex;
    align-items: center;
    height: 300px;
    width: 100%;
    margin: 0 auto;
}
.main-header h1 {
    font-size: 36px;
}
.title {
    text-align: center;
    font-size: 24px;
    padding: 20px 0 50px 0;
}
.title h1 {
    margin-bottom: 0;
}
/* Cuerpo de la página */
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 1%;
    margin: 0 auto;
    gap: 2%;
}
article.content{
    justify-content: left;
    display: block;
}
.content img {
    flex: 1;
    max-width: 30%;
    height: auto;
    padding: 5%
}
form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 50%;
    padding-right: 100px;
}
form input, form textarea, form button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: auto;
}
        form button:hover {
            background-color: #45a049;
        }
        form .checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        /* Imágenes representativas */
.renewables-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px 40px 20px;
    margin-bottom: 60px;
}
        .renewables-images img {
            width: 25%;
            height: auto;
        }
        /* Pies de página */

        /* Banner de cookies */

        
/* Responsividad */
@media only screen and (max-width: 900px) {
    .main-header {
        height: 200px;
        width: auto;
    }
    .content {
        flex-direction: column;
        text-align: left;
    }
    .content img {
        max-width: 70%;
        height: auto;
    }
    form {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
        padding: 0;
    }
    .renewables-images {
        flex-direction: column;
        gap: 10px;
    }
    .renewables-images img {
        width: 100%;
        height: auto;
    }
    .renewables-images img[alt="Energía Eólica"], img[alt="Energía Hidráulica"] {
        display: none;
    }
}