/* FONTS */
@import url(../css/clash-display.css);

/* VARIABLES */
:root {
    --font-base: "ClashDisplay", sans-serif;
    --box-shadow: 0px 15px 25px rgba(0,0,0,0.08);
    --transition: all 0.5s ease;
    /* ----------------------COLORES --------------------*/
    --white-color: #ffffff;
    --c-dark: #212529;
    --c-brand: #05427f;
    --c-brand-light: #075099;
    --c-hero:#2875c2;
    --c-brand-rgb: 171, 151, 229;
    --c-body: #727272;

    /*---------------FUENTE Y TIPOGRAFIA-------------------*/
    --font-cursive: 'Great Vibes', cursive;
    --body-font: 'Montserrat', sans-serif;
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.813rem;

    /*---------------FONT WEIGHT-------------------*/
    --font-light: 300;
    --font-medium: 400;
    --font-semi-bold: 700;
    --font-bold: 800;

    /*---------------MARGINS-------------------*/
    --mb-05: 0.5rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /*---------------Z INDEXS-------------------*/
    --Z-fixed: 100;
    --z-tooltip: 10;
    --z_negative: -1;
}


/* RESET & HELPERS */
body {
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--c-body);
}

h1, h2, h3,h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 600;
    color: var(--c-dark);
}
p{
    font-size: 18px;
}
a {
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand-light);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}

/* IMAGE ZOOM */
.image-zoom {
    position: relative;
    /* overflow: hidden; */
}

.image-zoom-wrapper {
    overflow: hidden;
    position: relative;
}

.image-zoom-wrapper img{
    transition: var(--transition);
}

.image-zoom:hover .image-zoom-wrapper img {
    transform: scale(1.1);
}


/* NAVBAR */
.navbar-brand {
    position: relative;
    width: 115px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
section h1{
    text-transform: uppercase;
}
.navbar-brand img {
    max-width: 100%;
    height:51px;
    display: block;
    margin-top: -2px;
}
.navbar {
    box-shadow: var(--box-shadow);
    text-transform: uppercase;
    font-size: 15px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #000000;
}

.navbar-nav .nav-link.active {
    font-weight: 700;
    color: var(--c-brand);
    border-bottom: 2px solid var(--c-brand);
}
/* BTN */
.btn{
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--c-brand);
    color: var(--white-color);
    border: 1px solid var(--c-brand);
    border-radius: 50px;
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    line-height: var(--normal-font-size);
    padding: 10px 20px;
    outline: none;
    cursor: pointer;
    transition: all 400ms ease;
}

.btn:hover{
    background-color: transparent;
    color: var(--c-brand);
}
.btn__outline{
    width: 280px;
    background-color: transparent;
    color: var(--c-brand-light);
    padding: 5px 10px 5px 0;
    transition: all 400ms ease-in-out;
    position: relative;
}
.btn__outline::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15%;
    height: 100%;
    background-color: var(--c-brand);
    border: 1px solid var(--c-brand);
    border-radius: 50px;
    transition:  all 400ms ease-in-out;
}
.btn__outline i{
    position: relative;
    right: 14px;
    margin-right: var(--mb-1-5);
    font-size: var(--h2-font-size);
    color: var(--white-color);
    z-index: var(--z-tooltip);
}
.btn__outline:hover::before{
    width: 100%;
    z-index: var(--z_negative);
}
.btn__outline:hover{
    color: var(--white-color);
    z-index: var(--z-tooltip);
}

/* HERO */

#inicio {
    background: linear-gradient(rgba(0, 0, 0, 0.692), rgba(0, 0, 0, 0.7)), url(../img/banner.jpg);
    background-position: center;
    background-size: cover;
}
.hero-txt{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero-txt h5{
    text-transform: uppercase;
}
/* SECTION TITLE */
.section-title {
    margin-bottom: 60px;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto;
}

.section-title p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #000000;
}
.section-title h1{
    font-size: 3rem;
}
/* ICONBOX */
.iconbox {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--c-brand-rgb), 0.1);
    color: var(--c-brand);
    font-size: 34px;
    flex: none;
}
/* ABOUT */
.about-content{
    display: flex;
    align-items: center;
    justify-content: space-evenly;}
.texto{
    text-align: justify;
    color: #000000;
}
.imagen{
    width: 47%;
    margin-left: 10px;
    border-radius: 5px;
}
.imagen img{
    width: 100%;
    border-radius: 5px;
}
/* VENTAJAS */
#ventajas{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #000000;
}
#ventajas::before{
    content: "";
    width: 100%;
    height: 62%;
    background-color: var(--c-brand);
    position: absolute;
    top: 33%;
    left: 0;
    z-index: var(--z_negative);
}
.ventajas_text{
    margin-bottom: 20px;
    color: var(--white-color);
}
.ventajas_content>h5 {
    color: var(--white-color);
}
.ventajas_content>p {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    color: var(--white-color);
}
.ventajas_subtitle{
    margin-top: 30px;
}
.ventajas_subtitle h2{
    color: var(--white-color);
}
/* SERVICE */
.service {
    display: flex;
    align-items: flex-start; /* Alinea el contenido al inicio */
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff; /* Fondo blanco */
}

.service img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-right: 20px; /* Espacio entre la imagen y el texto */
}

.servicios_txt {
    flex: 1; /* Ocupa el espacio restante */
}

.servicios_txt h4 {
    font-size: 1.5rem;
    color: #333; /* Color del texto */
    margin-bottom: 15px;
}

.servicios_txt ul {
    list-style-type: none; /* Quitar viñetas */
    padding: 0;
    margin: 0; /* Elimina el margen */
    color: #000000;
}

.servicios_txt ul li {
    margin-bottom: 10px; /* Espacio entre los elementos de la lista */
    position: relative;
    padding-left: 20px; /* Espacio para el marcador */
    text-align: left; /* Alineación del texto a la izquierda */
}

.servicios_txt ul li::before {
    content: '✓'; /* Marcador personalizado */
    position: absolute;
    left: 0;
    color: var(--c-brand); /* Color verde para el marcador */
}

.service img {
    width: 45%;
    height: 450px; /* Ajusta la altura */
    object-fit: cover; /* Asegura que la imagen cubra el contenedor */
    transition: transform 0.8s ease; /* Suaviza la animación de la imagen */
}
.servicios-txt{
    color: #000000;
}
.servicios_txt ul{
    font-size: 18px;
}

/* citas */
.citas{
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    top: -10%;
    bottom: 25px;

}
#citas {
    position: relative;
    z-index: 2;
}

#citas::after {
    content: "";
    width: 100%;
    height: 80%;
    background: linear-gradient(rgba(0, 0, 0, 0.712), rgba(0, 0, 0, 0.712)), url(../img/banner.jpg);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* FOOTER */
footer {
    padding-top: 100px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
}


footer li,
footer p,
footer a {
    color: rgba(255,255,255,0.7);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer .line {
    width: 40px;
    height: 4px;
    background-color: var(--c-brand);
    margin-top: 12px;
    margin-bottom: 24px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 100px;
}

.social-icons a:hover {
    background-color: var(--c-brand);
    color: white;
}
.footer-img{
    position: relative;
    width: 118px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 5px;
}
.footer-img img{
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: -10px;
}
/* DISEÑO RESPONSIVO */
@media(max-width:767px){
    /* ABOUT */
    .about-content{
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    .texto{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .imagen{
        width: 65%;
        margin-left: 10px;
        border-radius: 5px;
    }
    .imagen img{
        min-width: 100%;
    }
    /* TITULOS */
    .section-title h1{
        font-size: 2rem;
    }
    /* VENTAJAS */
    #ventajas::before{
        content: "";
        width: 100%;
        height: 80%;
        background-color: var(--c-brand);
        position: absolute;
        top: 16%;
        left: 0;
        z-index: var(--z_negative);
    }

    /* SERVICIOS */
    .service {
        flex-direction: column;
        align-items: flex-start;
    }
    .service img {
        width: 100%;
        order: 1;
        margin-bottom: 15px;
    }
    .texto{
        margin-top: 20px;
        width: 98%;
    }
    .navbar-navm{
        padding: 10px 0;
    }
    .btn-brand a{
        margin-bottom: 10px;
    }
}
