/* Reiniciar estilos básicos */
@font-face {
    font-family: 'Manrope';
    src: url('/recursos/fonts/Manrope-VariableFont_wght.ttf') format('truetype');
    /* Ruta al archivo de fuente */
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    padding-top: 70px;
    height: 100%;
    font-family: "Manrope", sans-serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    /* Distribuye logo a la izquierda, enlaces a la derecha */
    align-items: center;
    background-color: transparent;
    padding: 1em 2em;
    position: fixed;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.6);
    width: 100%;
}

/* Estilos de los enlaces de navegación */
.nav-link {
    font-size: large;
    list-style: none;
    display: flex;
    gap: 2em;
    color: #797979 !important;
}

.nav-link:hover {
    color: #008BCF !important;
    background-color: white;
    transition: 1s;
}

#contactenos {
    background-color: #008BCF;
    color: white !important;
}

#contactenos:hover {
    background-color: #00689b;
    color: white !important;
}

#conoce {
    background-color: #008BCF;
    color: white !important;
}

#conoce:hover {
    background-color: #00689b;
    color: white !important;
}

#btnEnviar {
    background-color: #008BCF;
    color: white !important;
}

#btnEnviar:hover {
    background-color: #00689b;
    color: white !important;
}
.logo img {
    width: 150px;
    /* Tamaño del logo */
}

/* Card */
.card-title {
    color: #008BCF !important;
}

.card-text {
    color: #797979 !important;
}

.card-img-responsive {
    display: none;
}

/* card overlay */

.card-img-overlay .card-text-about {
    color: #797979 !important;
}

.about-card-img {
    width: 420px;
    height: 420px;
    object-fit: cover;
    border-radius: 50%;
    /* Espacio entre contenido y imagen */
}

.product-card-img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
}

.card-img-product {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
}

/*  */
/* card about */
.about-card .col-img {
    text-align: center;
}

/* product */
.product-card .col-img {
    text-align: center;
}

.product-card .col-12 .card-body {
    height: 15vh;
}

.img-client{
    width: 40%;
}
.form-control-send{
    background-color: #797979 !important;
}
/*  */
/* Footer */
#footer-custom{
    background-color: #2d2d2d;
}
/* */
@media (max-width: 768px) {
    .logo img {
        width: 100px;
    }

    .card {
        height: 50vh;
    }

    .card-img-responsive {
        display: block;
    }

    .card-img-full {
        display: none;
    }

    .card-img-overlay {
        width: 100% !important;
    }

    .card-title-overlay {
        width: 100% !important;
        font-size: 30px !important;
    }

    .card-content {
        background-color: rgba(255, 255, 255, 0.705);
    }

    .about-card-img {
        width: 220px;
        height: 220px;
        object-fit: cover;
        border-radius: 50%;
        margin-left: 20px;
        /* Espacio entre contenido y imagen */
    }

    .product-card .col-12 .card-body .card-title {
        font-size: large !important;
    }

    .product-card .col-12 .card-body {
        height: 15vh;
    }

    .product-card-img {
        width: 140px;
        height: 140px;
        object-fit: cover;
        border-radius: 50%;
    }

    .img-client{
        width: 100%;
    }
}