* {
    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.265)),
        url(img/0.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    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: #373737b4;
}

.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(21, 21, 21, 0.5),
            rgba(0, 0, 0, 0.563)),
        url(img/9.png);
   background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    min-height: flex;
    align-items: center;
    
}
.seccion-glass {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 30px;
    padding: 60px 50px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);

    margin: 80px auto;
}
.contenedor-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    padding: 30px 25px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto elegante al pasar el mouse */
.contenedor-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* Imagen uniforme */
.contenedor-info img {
    width: 100%;
    max-width: 340px;
    border-radius: 15px;
    margin-top: 18px;
}

/* Texto mismo ancho que imagen */
.contenedor-info p {
    width: 100%;
    max-width: 340px;
    text-align: justify;
    margin-top: 18px;
    line-height: 1.7;
}

/* Espaciado del título */
.contenedor-info h4 {
    margin-bottom: 10px;
    font-weight: 600;
}
.mb-4{
    padding: 15px;
}


.quienes-content {
    text-align: center;
}

.quienes-content h2 {
    font-size: 55px;
    line-height: 200px;
    color: rgb(231, 230, 230);
    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;
}
/* 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);
}








.services {
    background-image: linear-gradient(rgba(182, 155, 155, 0.7),
            rgba(35, 35, 35, 0.7)),
        url(img/17.png);
   background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    min-height: flex;
    align-items: center;
}

.services-content {
    text-align: center;
}

.services-content h2 {
    font-size: 70px;
    line-height: 70px;
    color: #f9fafc;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.mb-5{
    color: #ffffff;
    padding: 45px;
}
.services {
    background: linear-gradient(135deg, #88866ca8, #5e5e5ca4);
    color: #fff;
}

.titulo-seccion {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bloque-servicio {
    margin-bottom: 80px;
    text-align: center;
}

.categoria {
    font-weight: 600;
    margin-bottom: 10px;
}

.descripcion-categoria {
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.85;
}

.service-card {
    margin-top: 20px;
    background: #bcaf8e9a;
    padding: 25px;
    border-radius: 15px;
    display:block;
    flex-direction: column;
    flex-grow: 1; /* Esto hace que ambas crezcan igual */
}

.bloque-servicio {
    background: #1d1d1d50;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    width: 100%;
}


.service-card h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    text-align: justify;
    margin-bottom: 15px;
    color: #000;
}

.service-card img {
    margin-top: auto; /* Empuja la imagen al fondo */
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.img-uniforme {
    width: 100%;
    height: 220px;          /* MISMA ALTURA PARA TODAS */
    object-fit: cover;      /* Recorta sin deformar */
    border-radius: 12px;
    margin-top: auto;
    display: block;
}
.img-uniforme:hover {
    transform: scale(1.05);
}

.propuesta {
    background-image: linear-gradient(rgb(236, 217, 195),
            rgb(35, 35, 35)),
        url(img/7.png);
        background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    min-height: flex;
    align-items: center;
}

.propuesta-box {
    max-width: 800px;
    padding: 60px 50px;
    border-radius: 25px;
    background: #c5c2c2c5;
    box-shadow: rgb(119, 115, 115)50px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.titulo-propuesta {
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.subtitulo-propuesta {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.texto-propuesta {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.imagen-propuesta {
    max-width: 300px;
    margin-top: 20px;
}

.services-content p {
    font-size: 20px;
    color: #c5c5c5;
    margin-bottom: 50px;
    padding: 0 100px;
}

.services-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.services-1 {
    padding: 0 100px;
}

.services-1 img {

    width: 500px;
    margin-bottom: 10px;
}

.services-1 h3 {
    color: #eaccb3;
    font-size: 45px;
}

.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;
}



/* 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;
}
}



/* BLOG COMPLETO */

.blog-completo {
    background-color: #c3c3c4;
    font-family: 'Poppins', sans-serif;
}

.blog-featured {
    background: linear-gradient(135deg, #000, #1a1a1a);
    color: white;
}

.blog-featured img {
    transition: transform 0.5s ease;
}

.blog-featured img:hover {
    transform: scale(1.05);
}
.blog-content h2{
    font-size: 60px;
}
.blog-content p{
    font-size: 25px;
    font-family: sans-serif;
}
.blog-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}   

.blog-link {
    text-decoration: none;
    font-weight: 600;
    color: #000;
}

.blog-link:hover {
    color: #f4b400;
}


/* === IMÁGENES BLOG MISMO TAMAÑO === */

.blog-featured img {
    width: 100%;
    height: 350px;            /* Imagen destacada más grande */
    object-fit: cover;
    border-radius: 12px;
}

.blog-card img {
    width: 100%;
    height: 220px;            /* Todas las cards mismo alto */
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* Opcional: efecto más profesional */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
}



