﻿
/* Estilos para las cajas de la sección de contacto */
.info-box {
    display: flex;
    align-items: center;
    background: white; /* Fondo blanco en cada caja */
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .info-box i {
        font-size: 30px;
        color: #b30000;
        margin-right: 15px;
    }

    .info-box h5 {
        margin: 0;
        font-size: 18px;
        font-weight: bold;
    }

    .info-box p {
        margin: 0;
        font-size: 16px;
        color: #555;
    }

    .info-box a {
        position: relative;
        display: inline-block;
        color: #b30000;
        text-decoration: none;
    }

        .info-box a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: #b30000;
            bottom: 0;
            left: 0;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.25s ease-out;
        }

        .info-box a:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }


    .info-box:hover {
        transform: translateY(-5px);
        transition: 0.3s;
    }

.info-hiperlink a {
    position: relative;
    display: inline-block;
    color: #b30000;
    text-decoration: none;
}

    .info-hiperlink a::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #b30000;
        bottom: 0;
        left: 0;
        transform: scaleX(0);
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    .info-hiperlink a:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

.info-text-red {
    font-size: 1rem;
    line-height: 1.4;
    color: #b30000;
}
 
/* Estilo de los Inputs y Botón */
.input-group-text {
    background: #b30000;
    color: white;
    border: none;
    border-radius: 10px 0 0 10px;
}

.form-control {
    border-radius: 0 10px 10px 0;
    border: 2px solid #b30000;
    transition: all 0.3s;
}

    .form-control:focus {
        border-color: #b30000;
        box-shadow: 0 0 10px rgba(255, 65, 108, 0.5);
    }

.contact-card .form-control,
.contact-info .info-box {
    border-radius: 10px;
}


.glass-card-contact {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    width: 100%;
    max-width: 620px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-contact {
    background-color: #dc3545;
    padding: 0.5rem 2rem;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s ease;
}

    .btn-contact:hover {
        background-color: #b02a37;
    }

.ubi-t2 {
    color: #333;
}