.apartado-contacto {
    border-top: 1px solid #e1dbdb;
}

.sendCotizarModal {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    font-family: 'Poppins', sans-serif;
    width: 100%;
    /* max-width: 500px; */
    margin: auto;
}

.imgAvatarSeller {
    max-width: 4rem;
    border-radius: 50px;
    box-shadow: 1px 0px 17px 6px rgba(179, 179, 179, 0.75);
    -webkit-box-shadow: 1px 0px 17px 6px rgba(179, 179, 179, 0.75);
    -moz-box-shadow: 1px 0px 17px 6px rgba(179, 179, 179, 0.75);
}

.headerCotizar {
    background: #004b8d !important;
    color: white !important;
    padding: 20px;
    text-align: center;
}

.imgCotizar {
    border-radius: 5px;
}

.form-group select {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    font-size: 0.95rem;
    background-color: #f9fafb;
    transition: all 0.2s ease-in-out;
}

.form-group select:focus {
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.btn-accept {
    background: linear-gradient(90deg, #00a859, #2ecc71);
    color: white;
    border: none !important;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 168, 89, 0.3);
}


.contact-options {
    display: flex;
    justify-content: space-around;
    margin: 15px 15px;
}

.radio-card {
    background: #f4f6f8;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
    font-weight: 500;
}

.radio-card:hover {
    background: #e8f0ff;
    border-color: #004b8d;
}

.radio-card input {
    display: none;
}

.radio-card input:checked+span {
    color: #004b8d;
    font-weight: 600;
    border-color: #004b8d;
}

.radio-card input:checked+label {
    border-color: #004b8d !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.schedule {
    text-align: center;
    margin: 10px 0 20px;
    display: none;
}

.schedule label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.schedule input {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px;
    font-size: 0.95rem;
}

.form-control {
    background: #f4f6f8;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
    border: 1px solid #ccc !important;
    font-weight: 500;
}

.form-control:focus {
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.required::after {
    content: "*";
    color: #e74c3c;
    margin-left: 4px;
}