/* ======= GLOBAL ======= */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #172256;
}

/* ======= NAVBAR ======= */
.navbar {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar-brand img {
    height: 60px;
}

a{
    color: inherit!important;
    text-decoration: none;
}

.ContImgFluid img, .img-fluid, .img-responsive {
    display: block;
    width: 100%!important;
    height: auto;
}


.navbar-nav .nav-link {
    color: #172256;
    font-weight: 600;
    padding: 10px 15px;
    transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
    color: #f1cbcb;
}

/* ======= HERO SECTION ======= */
/* Hero Section */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Ajusta cada slide */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.text-center.slide-content {
    color: #172256;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}
.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ======= SECCIÓN DE SERVICIOS ======= */
#servicios {
    padding: 80px 0;
    text-align: center;
    background-color: #ffffff;
}
.servicio-card {
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.servicio-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.servicio-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.servicio-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(241 203 203 / 6%);
}
.card-body {
    padding: 25px;
}
.servicio-title {
    font-size: 22px;
    font-weight: 700;
    color: #172256;
}
.servicio-text {
    font-size: 16px;
    color: #555;
}
.btn-primary {
    background-color: #E5A3A3;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}
.btn-primary:hover {
    background-color: #172256;
    color: #fff!important;
}

a.btn:hover {
    color: #fff!important;
}


.contText {
    text-align: justify;
}

.post-content {
    text-align: justify;
}


/* Botón Scroll to Top */
    #scrollTopBtn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: none;
        background-color: #172256;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }
    #scrollTopBtn:hover {
        background-color: #E5A3A3;
    }

    /* Botón WhatsApp */
    .whatsapp-btn {
        position: fixed;
        bottom: 20px;
        left: 20px;
        background-color: #25D366;
        color: white!important;
        padding: 7px 15px;
        border-radius: 50%;
        font-size: 24px;
        box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
    }
    .whatsapp-btn:hover {
        background-color: #1EBE5D;
    }


/* ======= FOOTER ======= */
.footer {
    background-color: #fff;
    color: #172256;
    text-align: center;
    padding: 20px 0;
}