:root{
    --color-primario:#2C3639;
    --color-secundario:#d5cebb;
    --color-terciario:#a27b5c;
    --color-hover:#3b5249;
    --color-blanco:#ffffff;
}

body{
    margin:0;
    padding:0;
    font-family:Arial,sans-serif;
    background-color:#f3f1ec;
    color:var(--color-primario);
}

/* PORTADA */

.portadaNosotros{
    position:relative;
    width:100%;
    height:400px;
    overflow:hidden;
}

.portadaNosotros img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(65%);
}

.contenidoPortada{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    color:white;
    max-width:600px;
}

.contenidoPortada h1{
    font-size:60px;
    margin-bottom:20px;
}

.contenidoPortada p{
    font-size:20px;
    line-height:1.7;
}

/* CONTENIDO */

.contenedorNosotros{
    max-width:1300px;
    margin:60px auto;
    padding:0 30px;

    display:flex;
    flex-direction:column;
    gap:50px;
}

/* SECCIONES */

.seccionNosotros{
    display:flex;
    align-items:center;
    gap:40px;

    background-color:white;
    border-radius:25px;
    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.seccionNosotros img{
    width:45%;
    height:420px;
    object-fit:cover;
}

.textoNosotros{
    padding:40px;
    flex:1;
}

.textoNosotros h2{
    font-size:42px;
    margin-top:0;
    margin-bottom:20px;
    color:var(--color-terciario);
}

.textoNosotros p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:20px;
}

.reverse{
    flex-direction:row-reverse;
}

/* EQUIPO */

.equipoSection{
    max-width:1300px;
    margin:70px auto;
    padding:50px 30px;

    background-color:var(--color-secundario);

    border-radius:25px;
    text-align:center;
}

.tituloEquipo{
    font-size:45px;
    margin-bottom:20px;
    color:var(--color-primario);
}

.descripcionEquipo{
    max-width:900px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#333;
    margin-bottom:50px;
}

.contenedorEquipo{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.cardEquipo{
    width:300px;
    background-color:white;
    border-radius:20px;
    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,0.1);

    transition:0.3s ease;
}

.cardEquipo:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 28px rgba(0,0,0,0.15);
}

.cardEquipo img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.cardEquipo h3{
    margin-top:20px;
    font-size:26px;
    color:var(--color-terciario);
}

.cardEquipo p{
    padding:0 20px 25px;
    line-height:1.7;
    color:#444;
}

/* FRASE FINAL */

.fraseFinal{
    margin-top:30px;
    background-color:var(--color-primario);
    padding:70px 20px;
    text-align:center;
}

.fraseFinal h2{
    color:white;
    font-size:38px;
    max-width:900px;
    margin:auto;
    line-height:1.6;
}

/* RESPONSIVE */

@media(max-width:1000px){

    .seccionNosotros,
    .reverse{
        flex-direction:column;
    }

    .seccionNosotros img{
        width:100%;
        height:300px;
    }

    .textoNosotros{
        padding:30px;
    }

    .contenidoPortada h1{
        font-size:45px;
    }

    .textoNosotros h2{
        font-size:34px;
    }
}

@media(max-width:700px){

    .portadaNosotros{
        height:300px;
    }

    .contenidoPortada{
        left:5%;
        max-width:90%;
    }

    .contenidoPortada h1{
        font-size:34px;
    }

    .contenidoPortada p{
        font-size:16px;
    }

    .textoNosotros h2{
        font-size:28px;
    }

    .textoNosotros p{
        font-size:16px;
    }

    .fraseFinal h2{
        font-size:26px;
    }

    .tituloEquipo{
        font-size:32px;
    }

    .descripcionEquipo{
        font-size:16px;
    }

    .cardEquipo{
        width:100%;
        max-width:350px;
    }
}