/* BODY */
body {
    background-color: white;
    color: #000000;
}

/* NAV */
.navbar-brand,
.navbar-nav .nav-link,
.navbar-nav .nav-link.active {
    color: white;
}


/* Esto sirve para poder realizar una sobre imagen con background para un carousel en especifico */
/* .overlay-image {
    position: absolute;
    max-width: 100%;
}

.overlay-1 {
    top: 10%;
    left: 50%;
    width: 40%;
    max-width: 200px;
    height: auto;
}

.overlay-2 {
    top: 20%;
    left: 10%;
    width: 30%;
    max-width: 150px;
    height: auto;
}

.overlay-3 {
    top: 30%;
    left: 5%;
    width: 20%;
    max-width: 100px;
    height: auto;
} */


/* Seccion de iconos */
.wcu-div {
    position: relative;
    padding: 20px 0 0;
    margin-top: 15px;
    margin-bottom: 30px;
}

.wcu-icon {
    width: 80px;
    margin: 0 auto 18px;
    transition: all 0.4s ease-in-out;
}

.wcu-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    text-align: center;
}

.wcu-div .gnl-p {
    margin-bottom: 0;
    text-align: center;
    padding: 0 10px;
}

.wcu-div:hover .wcu-icon {
    transform: rotateY(180deg);
}

@media(max-width:991px) {
    .wcu-div {
        margin-top: 0;
        margin-bottom: 35px;
    }

    .wcu-div .gnl-p {
        padding: 0;
    }
}


/* Formulario */
.form-control {
    background-color: white;
    color: #000000;
}

/* Estilo cuando el input está enfocado */
.form-control:focus {
    background-color: white; /* Cambia el color de fondo a blanco */
    color: #000000;
}

#formulario .card,
#formulario .card-body {
    border: none !important;
    background-color: rgba(5, 41, 73, 0.196);
    border-radius: 0;
    backdrop-filter: blur(10px);

}

#formulario_movil .card,
#formulario_movil .card-body {
    border: none !important;
    background-color: rgba(5, 41, 73, 0.60);
    border-radius: 0;
}

#mensaje .card {
    border: none !important;
    background-color: rgba(5, 41, 73, 0.60);
    border-radius: 0;
}

#mensaje_movil .card {
    border: none !important;
    background-color: rgba(5, 41, 73, 0.60);
    border-radius: 0;
}

#enviar {
    border: none !important;
    background-color: rgb(55, 108, 164);
    border-radius: 0;
}

#enviar_movil {
    border: none !important;
    background-color: rgb(55, 108, 164);
    border-radius: 0;
}

.title {
    background: linear-gradient(to right, #052949 0%, #052949 100%);
    padding: 10px;
    border-radius: 0;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.title h4 {
    margin: 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Cards */
.card-img-top {
    height: 200px !important;
    /* Define la altura deseada para las imágenes */
    object-fit: cover !important;
    /* Hace que la imagen cubra todo el contenedor sin deformarse */
}

.custom-card {
    background: linear-gradient(to bottom right, #0E283E 0%, #094981 100%);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s;
}

.custom-card:hover {
    transform: scale(1.05);
}

.custom-card img {
    border-radius: 0;
}

/* Formulario */
.card {
    background-color: #f8f9fa;
}

.form-label {
    color: #000000;
}

.form-control {
    border: 1px solid #ced4da;
    border-radius: 2px;
}

.form-control:focus {
    border-color: #000000;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

/* Footer */
.social-icons i {
    margin-right: 10px;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: #6588b2;
}

