/* Modal Contacto */
.modal-contacto {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(44,62,80,0.35);
    justify-content: center;
    align-items: center;
}
.modal-contacto.active {
    display: flex;
}
.modal-content {
    background: #fff;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    position: relative;
    max-width: 95vw;
    width: 100%;
    max-width: 400px;
    margin: 0 1rem;
    text-align: center;
    animation: modalIn 0.3s cubic-bezier(.4,2,.6,1);
}
@keyframes modalIn {
    from { transform: scale(0.95) translateY(30px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 2rem;
    color: #2980B9;
    cursor: pointer;
    font-weight: bold;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.2s;
}
.modal-close:hover {
    color: #1a5a8a;
}
.modal-header {
    margin-bottom: 1rem;
}
.modal-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}
.px-4.pt-2.pb-0.text-center {
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
    color: #3b3b3b;
}
.px-4.pt-2.pb-0.text-center a {
    color: #2980B9;
    text-decoration: underline;
    font-weight: 500;
}
.modal-body {
    margin-bottom: 1.2rem;
}
.form-group {
    margin-bottom: 1.1rem;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.97rem;
    color: #2C3E50;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1.5px solid #cfd8dc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
    outline: none;
    background: #f8fafc;
    color: #1f2937;
    margin-top: 0.1rem;
    box-sizing: border-box;
}
.form-control:focus {
    border-color: #2980B9;
    background: #fff;
}
.modal-footer {
    margin-top: 1.2rem;
}
.btn.btn-primary {
    background: #2980B9;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.7rem 2rem;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px 0 rgba(41,128,185,0.07);
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
    background: #1a5a8a;
    transform: scale(1.04);
}
.text-muted {
    color: #6b7280;
    font-size: 0.95em;
}
@media (max-width: 480px) {
    .modal-content {
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    }
}


