/* ========================================
   FORMULARIO COTIZAR VEHÍCULO - CSS
   ======================================== */

.fcv-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.fcv-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.fcv-form-header h2 {
    color: #002D72;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.fcv-form-header p {
    color: #666;
    font-size: 16px;
}

.fcv-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fcv-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.fcv-form-group {
    margin-bottom: 20px;
    flex: 1;
}

.fcv-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.fcv-form-group input[type="text"],
.fcv-form-group input[type="email"],
.fcv-form-group input[type="tel"],
.fcv-form-group select,
.fcv-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.fcv-form-group input:focus,
.fcv-form-group select:focus,
.fcv-form-group textarea:focus {
    outline: none;
    border-color: #002D72;
}

.fcv-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.fcv-vehiculo-imagen {
    margin: 20px 0;
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.fcv-vehiculo-imagen img {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fcv-submit-button {
    width: 100%;
    padding: 15px 30px;
    background: #002D72;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fcv-submit-button:hover {
    background: #001f4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 45, 114, 0.3);
}

.fcv-submit-button:active {
    transform: translateY(0);
}

.fcv-submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.fcv-form-messages {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 6px;
    display: none;
}

.fcv-form-messages.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.fcv-form-messages.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .fcv-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .fcv-form {
        padding: 25px 20px;
    }
    
    .fcv-form-header h2 {
        font-size: 24px;
    }
    
    .fcv-vehiculo-imagen img {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .fcv-form-container {
        padding: 20px 10px;
    }
    
    .fcv-form {
        padding: 20px 15px;
    }
    
    .fcv-form-header h2 {
        font-size: 20px;
    }
}

