/* CAMPAÑA/BODEGÓN PAGE STYLES */

.bodegon-description {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px 0 30px 0;
}

.main-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #222;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.bodegon-gallery {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
}

.bodegon-gallery__row {
    display: flex;
    width: 100%;
    margin: 8px 0;
}

.bodegon-gallery__img {
    width: 50%;
    object-fit: cover;
    display: block;
    border: none;
}

@media (max-width: 900px) {
    .main-description {
        font-size: 1.1rem;
    }
    .bodegon-gallery__img {
        height: 28vw;
    }
}

@media (max-width: 600px) {
    .main-description {
        font-size: 0.95rem;
    }
    .bodegon-gallery__img {
        height: 22vw;
    }
    .bodegon-description {
        margin: 20px 0 15px 0;
    }
}
* {
    font-family: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333;
    font-weight: 100;
}

/* HEADER */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.header__logo {
    height: 20px;
    width: auto;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.header__menu-item {
    margin: 0;
}

.header__link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.header__link:hover {
    color: #000;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.header__icon:hover {
    opacity: 0.7;
}

/* FOOTER */

.footer {
    background-color: #000;
    color: #e5e5e5;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 80px 100px;
}

.newsletter-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}

.newsletter-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 420px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background-color: #2b2b2b;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 0 20px;
    cursor: pointer;
}

.newsletter-legal {
    font-size: 11px;
    line-height: 1.5;
    color: #aaa;
    max-width: 420px;
    margin-bottom: 10px;
}

.newsletter-lang {
    font-size: 11px;
    text-decoration: underline;
    cursor: pointer;
}

.footer-info {
    font-size: 13px;
}

.footer-info p {
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li,
.footer-column p {
    font-size: 13px;
    margin-bottom: 12px;
    color: #ccc;
}

.footer-logo {
    border-top: 1px solid #222;
    padding: 40px 0;
}

.footer-logo img {
    width: 90%;
    display: block;
    margin: auto;
}