* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}
:root {
    --primary-color: #0d6efd;
    --dark-bg: #121212;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
body {
font-family: Arial, Helvetica, sans-serif;
scroll-behavior: smooth;
}
h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: #222;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
}

.header {
    background-image: linear-gradient(rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.505)),
        url(img/3.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 140vh;
    min-height: flex;
    align-items: center;
}

.navbar-nav a {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-dark .navbar-brand {
    color: #fff;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
    color: #000;
}

.w-100 {
    height: 100vh;
}

.navbar-toggler {
    padding: 1px 5px;
    font-size: 18px;
    line-height: 0.3;
}

.header-content {
    text-align: center;
}

.header-content h1 {
    font-size: 75px;
    line-height: 1000px;
    color: #f9fafc;
    text-transform: uppercase;
    margin-bottom: 25%;
}

.header-content p {
    font-size: 16px;
    color: #f9fafc;
    padding: 0 250px;
    margin-bottom: 25px;
}

.quienes {
    background-image: linear-gradient(rgba(65, 64, 64, 0.548),
            rgba(0, 0, 0, 0.527)),
        url(img/4.png);
   background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    min-height: flex;
    align-items: center;
    
}
.mb-4{
    padding: 45px;
}


.quienes-content {
    text-align: center;
}

.quienes-content h2 {
    font-size: 55px;
    line-height: 200px;
    color: rgb(248, 248, 248);
    text-transform: uppercase;
    padding: 0 250px;
    margin-bottom: 15px;
}

.txt-p {
    font-size: 25px;
    color: #141313;
    padding: 0 250px;
    margin-bottom: 40px;
}

.quienes-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.quienes-1 {
    padding: 0 20px;
}

.quienes-1 img {
    width: 275px;
}

.quienes-1 h3 {
    color: #944d4d;
    font-size: 25px;
    margin-bottom: 15px;
}
.section-padding {
    padding: 80px 0;
}
#nosotros .valores {
    align-items: flex-start; /* alinea todo a la izquierda */
    text-align: left;
}
#nosotros {
    min-height: 100vh;
    display: flex;
    align-items: center;     /* centra vertical */
    justify-content: center; /* centra horizontal */
}

#nosotros .container {
    max-width: 1100px;
}

/* Centrado del contenido */
#nosotros .row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
}

/* Columnas */
#nosotros .col-md-4,
#nosotros .col-md-3 {
    display: flex;
    justify-content: center;
}

/* TARJETAS TRANSPARENTES */
#nosotros .card-box {
    width: 100%;
    max-width: 400px;
    padding: 25px;
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.1); /* transparencia */
    backdrop-filter: blur(10px); /* efecto glass */
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);

    text-align: center;
}

/* Texto dentro */
#nosotros .card-box p {
    text-align: justify;
}

/* Valores alineado a la izquierda */
#nosotros .valores .card-box {
    text-align: left;
}

/* Imágenes */
#nosotros .card-box img {
    margin-top: 15px;
}
/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 1s ease-out;
}

/* Estilo para Imágenes */
.img-container {
    overflow: hidden;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.img-container img {
    transition: var(--transition);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Efecto hover profesional */
.card-item:hover img {
    transform: scale(1.1);
}

.card-item h3 {
    font-size: 1.25rem;
    margin-top: 1rem;
    transition: var(--primary-color);
}

.card-item:hover h3 {
    color: var(--primary-color);
}

/* Tarjetas de contacto */
.contact-card {
    padding: 30px;
    background: rgb(243, 241, 241);
    border-radius: 15px;
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    background: rgb(236, 232, 232);
    transform: translateY(-10px);
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}







.services {
    background-image: linear-gradient(rgba(65, 64, 64, 0.548),
            rgba(0, 0, 0, 0.527)),
        url(img/9.png);
   background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 80vh;
    min-height: flex;
    align-items: center;
}
.services-content h2 {
    font-size: 70px;
    line-height: 70px;
    color: #070707;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.services-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
}

.section-subtitle {
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 380px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1);
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}
.enfoque{
    background-image: linear-gradient(rgba(194, 190, 190, 0.195),
            rgba(255, 255, 255, 0)),
        url(img/13.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 97vh;
    min-height: flex;
    align-items: center;
}

/* Texto en negro */
.enfoque {
    color: #000;
}

/* Ajuste de títulos */
.enfoque h2,
.enfoque h5,
.enfoque p {
    color: #000;
}

/* Animación en imágenes */
.enfoque img {
    transition: all 0.4s ease;
    transform: scale(1);
    filter: grayscale(20%);
}

/* Efecto al pasar el mouse */
.enfoque img:hover {
    transform: scale(1.1) rotate(2deg);
    filter: grayscale(0%);
}

/* Opcional: efecto tipo "flotante" */
.enfoque .col-12 {
    transition: transform 0.3s ease;
}

.enfoque .col-12:hover {
    transform: translateY(-5px);
}


.antecedentes {
    background-image: linear-gradient(rgba(130, 129, 129, 0.524),
            rgba(103, 102, 102, 0.811)),
        url(img/2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
}

.antecedentes-content {
    text-align: center;
}

.antecedentes-content h2 {
    font-size: 70px;
    line-height: 70px;
    color: #070707;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.antecedentes-content p {
    font-size: 20px;
    color: #020202;
    margin-bottom: 50px;
    padding: 0 100px;
}

.antecedentes-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.antecedentes-1 {
    padding: 0 100px;
}

.antecedentes-1 img {

    width: 500px;
    margin-bottom: 10px;
}

.antecedentes-1 h3 {
    color: #eaccb3;
    font-size: 45px;
}



/* propuesta */
.propuesta-section {
    background: #7374745f;
}

.section-title {
    font-size: 40   px;
    font-weight: 800;
    color: #111827;
}

.propuesta-text {
    color: #000000;
    font-size: 18px;
    margin-bottom: 25px;
}

.propuesta-list {
    list-style: none;
    padding: 0;
}

.propuesta-list li {
    margin-bottom: 10px;
    color: #0a0a0a;
    font-weight: 500;
}

.propuesta-img {
    max-width: 90%;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}


/* TEXTO RESPONSIVO */
img {
max-width: 100%;
height: auto;
}

h2 {
font-size: clamp(28px, 5vw, 55px);
}

p {
font-size: clamp(14px, 2vw, 18px);
}
/* AJUSTES MÓVIL */
@media (max-width: 768px) {

.navbar-nav {
text-align: center;
}

section {
padding: 60px 20px;
}
}



