html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Hero */
.page-hero.about-us-hero {
    background-image: url('../img/carlos-montanya-skye.jpeg');
    background-size: cover;
    background-position: center 55%;
    background-repeat: no-repeat;
    height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blanco);
}

.page-hero.about-us-hero .custom-title {
    font-size: 3rem;
    margin: 0;
    line-height: 1.1;
}

/* Contenido */
.sobre-nosotros.container {
    max-width: 1200px;
    margin-top: 3rem;
}

.sobre-nosotros h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--color-blanco);
    margin-bottom: var(--spacing-l);
}

.sobre-nosotros .contenido {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    align-items: center;
    justify-content: center;
}

.sobre-nosotros .texto {
    flex: 1 1 500px;
    font-size: 1.1rem;
    color: var(--text-secundario);
    line-height: 1.8;
}

.sobre-nosotros .imagen {
    flex: 1 1 400px;
    text-align: center;
}

.sobre-nosotros .imagen img {
    width: 100%;
    max-width: 600px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-light);
    transition: transform 0.3s ease;
}

/* Valores corporativos */
.valores-corporativos {
    margin-top: 2.5rem;
    margin-bottom: 3rem;
    justify-content: center;
    width: 100%;
}

.valor-box {
    background-color: var(--color-blanco);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow-light);
    transition: transform 0.3s ease;
    height: 100%;
    justify-content: center;
}

.valor-box:hover {
    transform: translateY(-5px);
}

.valor-box i {
    font-size: 3rem;
    color: var(--color-mar-oscuro);
    margin-bottom: 1rem;
    display: inline-block;
}

.valor-box h3 {
    font-size: 1.8rem;
    color: var(--color-dunas);
    margin-bottom: 1rem;
}

.valor-box p {
    color: var(--text-secundario);
    font-size: 1rem;
    line-height: 1.6;
}

/* Bloque final */
.about-final-block {
    background-color: var(--color-blanco);
    padding: 3rem 0;
}

.about-final-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.about-final-image {
    flex: 1 1 500px;
}

.about-final-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-light);
}

.about-final-text {
    flex: 1 1 400px;
    color: var(--text-secundario);
}

.about-final-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-principal);
    margin-bottom: var(--spacing-m);
}

.about-final-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-m);
}

.about-final-text .btn {
    display: inline-block;
    margin-top: var(--spacing-m);
    color: var(--color-blanco);
}
