.cotizacion-section {
    max-width: 700px;
    margin: 2rem auto;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Títulos */
.cotizacion-section h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #222;
    font-weight: bold;
}

/* Subtítulos */
.cotizacion-section p {
    font-size: 1.6rem;
    text-align: center;
    color: #555;
    margin-bottom: 1rem;
}

/* Agrupación de elementos */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

/* Etiquetas */
label {
    font-size: 1.5rem;
    font-weight: bold;
    color: #222;
}

/* Inputs y textarea */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1.5rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fafafa;
    transition: all 0.3s ease-in-out;
}

input:focus,
textarea:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 8px rgba(0, 123, 255, 0.2);
    outline: none;
}

/* Área de texto */
textarea {
    resize: vertical;
    min-height: 80px;
}

/* ===================== */
/* SECCIÓN DE SUBIDA DE ARCHIVOS */
/* ===================== */

.file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
    border: 2px dashed #aaa;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.file-upload:hover {
    background: #ececec;
    transform: scale(1.02);
}

/* Oculta el input real */
.file-upload input[type="file"] {
    display: none;
}

/* Botón de subida de archivos */
.custom-file-upload {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.custom-file-upload:hover {
    background-color: #e65c00;
    transform: scale(1.05);
}

/* Mensaje de archivos seleccionados */
.file-name {
    font-size: 1.4rem;
    color: #555;
    text-align: center;
}

/* ===================== */
/* BOTONES DE ACCIÓN */
/* ===================== */

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

/* Botón de Enviar */
.btn-submit {
    padding: 1.2rem 2rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    background-color: #28a745;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    min-width: 120px;
}

/* Efecto hover */
.btn-submit:hover {
    background-color: #218838;
    transform: scale(1.05);
}

/* Botón de Cancelar */
.btn-cancel {
    padding: 1.2rem 2rem;
    font-size: 1.5rem;
    background-color: #dc3545;
    color: white;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.btn-cancel:hover {
    background-color: #c82333;
    transform: scale(1.05);
}

/* ===================== */
/* RESPONSIVE DESIGN */
/* ===================== */
@media (max-width: 768px) {
    .cotizacion-section {
        padding: 2rem;
        width: 90%;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-submit, .btn-cancel {
        width: 100%;
    }
}
