@charset "utf-8";
/* CSS Document */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #B0C4DE, #E6E6FA);
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
}

.content-band {
    display: flex;
    align-items: flex-end;
    background: linear-gradient(to bottom, #1a252f, #2c3e50);
    color: #ffffff;
    border-radius: 10px;
    max-width: 1200px;
    width: 100%;
    min-height: 55vh; 
    padding: 0 3rem;
    position: relative;
    overflow: hidden;
    transition: padding 0.3s ease;
}

.text-content {
    flex: 1.5;
    padding: 3rem 2rem 3rem 0;
    z-index: 10;
}

.construction-notice {
    font-size: 1rem; 
    font-weight: 300;
    color: #bdc3c7;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

h2 {
    /* ¡AJUSTE FINAL! Tamaño y peso aumentados */
    font-size: 1.8rem;
    font-weight: 400; /* De 300 (Light) a 400 (Normal) */
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #ffffff; 
}

.divider {
    width: 60px;
    border: 0.5px solid #7f8c8d;
    margin: 2rem 0;
}

.contact-link {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #ffffff; 
    border-radius: 5px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    transition: background-color 0.3s, color 0.3s;
}

.contact-link:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.image-container {
    height: 85%; 
    position: absolute;
    right: 3rem;
    bottom: 0;
    width: 40%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.image-container img {
    height: 100%; 
    width: auto;
    max-width: none;
    object-fit: cover; 
    object-position: bottom center; 
}

/* --- Media Query para Móviles --- */
@media (max-width: 820px) {
    .content-band {
        flex-direction: column;
        align-items: center;
        min-height: 0;
        padding: 2rem 2rem 0; 
        text-align: center;
    }

    .text-content {
        position: relative;
        padding: 0;
        margin-bottom: 0; 
    }

    .divider {
        margin: 2rem auto;
    }

    .image-container {
        position: relative;
        width: 100%;
        height: auto;
        right: 0;
        justify-content: center;
        margin-top: 2rem; 
    }
    
    .image-container img {
       position: relative;
       display: block; 
       width: 70%;
       height: auto;
       max-height: 50vh;
       object-fit: contain;
    }
}

/* --- Media Query para Pantallas Extra Anchas --- */
@media (min-width: 1600px) {
    .content-band {
        padding: 0 8rem; 
    }
    .image-container {
        right: 8rem;
    }
}