* {
    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/6.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: #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(12, 12, 12, 0.301),
            rgba(0, 0, 0, 0.39)),
        url(img/29.png);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    min-height: flex;
    align-items: center;
    
}

.mb-4{
    color: #ffffff;
    padding: 45px;
}


.quienes-content {
    text-align: center;
}

.quienes-content h2 {
    font-size: 55px;
    line-height: 15 0px;
    color: rgb(248, 248, 248);
    text-transform: uppercase;
    padding: 80px;
    margin-bottom: 25px;
}
.texto-justificado {
    text-align: justify;
}
.parrafo-nosotros {
    max-width: 800px;
    margin: 0 auto 25px auto;
    text-align: justify;
}

.txt-p {
    font-size: 25px;
    color: #141313;
    padding: 0 300px;
    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);
}

/* 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(rgb(12, 12, 12),
            rgba(48, 48, 48, 0.602)),
        url(img/7.png);
   background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    min-height: flex;
    align-items: center;
}
.servicio-img {
    width: 300px;
    height: 250px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
#servicios .texto-info {
    white-space: pre-line;
}
.servicio-bloque {
    background: #9aafb6;
    padding: 35px;
    border-radius: 12px;
    height: 100%;
}
/* Texto a la izquierda */
#servicios .servicio-bloque {
    text-align: left;
}

/* Imagen centrada */
#servicios .servicio-img {
    display: block;
    margin: 15px auto;
}

.subtitulo-servicio {
    font-weight: 700; /* negritas */
    color: #000;
}

.texto-justificado {
    text-align: justify;
    white-space: pre-line;
}
.parrafo-servicios {
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: justify;
}
.services-content {
    text-align: center;
}

.services-content h2 {
    font-size: 60px;
    line-height: 70px;
    color: #393a3a;
    text-transform: uppercase;
    margin-bottom: 60px;
}
.mb-5{
    color: #000000;
    padding: 45px;
}

.services-content p {
    font-size: 20px;
    color: #292929;
    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;
}

.propuesta {
    background-image: linear-gradient(rgba(23, 25, 39, 0.195),
            rgba(255, 255, 255, 0)),
        url(img/12.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 97vh;
    min-height: flex;
    align-items: center;
}

/* Texto en negro */
.propuesta {
    color: #000;
}
.service-card {
    margin-bottom: 50px;
}

/* Ajuste de títulos */
.propuesta h2,
.propuesta h5,
.propuesta p {
    color: #000;
}

/* Animación en imágenes */
.propuesta img {
    transition: all 0.4s ease;
    transform: scale(1);
    filter: grayscale(20%);
}


.aviso {
    background-image: linear-gradient(rgba(82, 80, 80, 0.195),
            rgba(255, 255, 255, 0)),
        url(img/.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 97vh;
    min-height: flex;
    align-items: center;
}

/* Texto en negro */
.aviso {
    color: #000;
}

/* Ajuste de títulos */
.aviso h2,
.aviso h5,
.aviso p {
    color: #000;
}

/* Animación en imágenes */
.aviso img {
    transition: all 0.4s ease;
    transform: scale(1);
    filter: grayscale(20%);
}

/* Efecto al pasar el mouse */
.aviso img:hover {
    transform: scale(1.1) rotate(2deg);
    filter: grayscale(0%);
}

/* Opcional: efecto tipo "flotante" */
.aviso .col-12 {
    transition: transform 0.3s ease;
}

.aviso .col-12:hover {
    transform: translateY(-5px);
}

.terminos {
    background-image: linear-gradient(rgba(82, 80, 80, 0.195),
            rgba(255, 255, 255, 0)),
        url(img/.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 40vh;
    min-height: flex;
    align-items: center;
}
.termino-bloque {
    max-width: 320px;
    margin: 0 auto;
}
.subtitulo-termino {
    font-weight: 800;
}

.termino-bloque p {
    text-align: justify;
    white-space: pre-line; /* Respeta los saltos escritos en el HTML */
}

.termino-bloque p {
    text-align: justify;
    margin-top: 15px;
}
/* Texto en negro */
.terminos {
    color: #000;
}

/* Ajuste de títulos */
.terminos h2,
.terminos h5,
.terminos p {
    color: #000;
}

/* Animación en imágenes */
.terminos img {
    transition: all 0.4s ease;
    transform: scale(1);
    filter: grayscale(20%);
}

/* Efecto al pasar el mouse */
.terminos img:hover {
    transform: scale(1.1) rotate(2deg);
    filter: grayscale(0%);
}

/* Opcional: efecto tipo "flotante" */
.terminos .col-12 {
    transition: transform 0.3s ease;
}

.terminos .col-12:hover {
    transform: translateY(-5px);
}



/* 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;
}
}



